#ifndef CHROME_BROWSER_PRINTING_CLOUD_PRINT_CLOUD_PRINT_PROXY_SERVICE_FACTORY_H_
#define CHROME_BROWSER_PRINTING_CLOUD_PRINT_CLOUD_PRINT_PROXY_SERVICE_FACTORY_H_
#include "base/compiler_specific.h"
#include "base/memory/singleton.h"
#include "components/keyed_service/content/browser_context_keyed_service_factory.h"
class CloudPrintProxyService;
class Profile;
class CloudPrintProxyServiceFactory : public BrowserContextKeyedServiceFactory {
public:
static CloudPrintProxyService* GetForProfile(Profile* profile);
static CloudPrintProxyServiceFactory* GetInstance();
private:
friend struct DefaultSingletonTraits<CloudPrintProxyServiceFactory>;
CloudPrintProxyServiceFactory();
virtual ~CloudPrintProxyServiceFactory();
virtual KeyedService* BuildServiceInstanceFor(
content::BrowserContext* profile) const OVERRIDE;
virtual bool ServiceIsNULLWhileTesting() const OVERRIDE;
};
#endif