#ifndef CHROME_BROWSER_UI_GLOBAL_ERROR_GLOBAL_ERROR_SERVICE_FACTORY_H_
#define CHROME_BROWSER_UI_GLOBAL_ERROR_GLOBAL_ERROR_SERVICE_FACTORY_H_
#include "base/basictypes.h"
#include "base/compiler_specific.h"
#include "base/memory/singleton.h"
#include "components/keyed_service/content/browser_context_keyed_service_factory.h"
class GlobalErrorService;
class Profile;
class GlobalErrorServiceFactory : public BrowserContextKeyedServiceFactory {
public:
static GlobalErrorService* GetForProfile(Profile* profile);
static GlobalErrorServiceFactory* GetInstance();
private:
friend struct DefaultSingletonTraits<GlobalErrorServiceFactory>;
GlobalErrorServiceFactory();
virtual ~GlobalErrorServiceFactory();
virtual KeyedService* BuildServiceInstanceFor(
content::BrowserContext* profile) const OVERRIDE;
virtual content::BrowserContext* GetBrowserContextToUse(
content::BrowserContext* context) const OVERRIDE;
DISALLOW_COPY_AND_ASSIGN(GlobalErrorServiceFactory);
};
#endif