#ifndef CHROME_BROWSER_GOOGLE_GOOGLE_URL_TRACKER_FACTORY_H_
#define CHROME_BROWSER_GOOGLE_GOOGLE_URL_TRACKER_FACTORY_H_
#include "base/basictypes.h"
#include "base/memory/singleton.h"
#include "components/keyed_service/content/browser_context_keyed_service_factory.h"
class GoogleURLTracker;
class Profile;
class GoogleURLTrackerFactory : public BrowserContextKeyedServiceFactory {
public:
static GoogleURLTracker* GetForProfile(Profile* profile);
static GoogleURLTrackerFactory* GetInstance();
private:
friend struct DefaultSingletonTraits<GoogleURLTrackerFactory>;
GoogleURLTrackerFactory();
virtual ~GoogleURLTrackerFactory();
virtual KeyedService* BuildServiceInstanceFor(
content::BrowserContext* profile) const OVERRIDE;
virtual void RegisterProfilePrefs(
user_prefs::PrefRegistrySyncable* registry) OVERRIDE;
virtual content::BrowserContext* GetBrowserContextToUse(
content::BrowserContext* context) const OVERRIDE;
virtual bool ServiceIsCreatedWithBrowserContext() const OVERRIDE;
virtual bool ServiceIsNULLWhileTesting() const OVERRIDE;
DISALLOW_COPY_AND_ASSIGN(GoogleURLTrackerFactory);
};
#endif