Chromium Code Reviews| Index: chrome/browser/extensions/platform_app_service_factory.h |
| diff --git a/chrome/browser/extensions/platform_app_service_factory.h b/chrome/browser/extensions/platform_app_service_factory.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..82412e92dbd849bd3a3305124c828cd9f66e8290 |
| --- /dev/null |
| +++ b/chrome/browser/extensions/platform_app_service_factory.h |
| @@ -0,0 +1,36 @@ |
| +// Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef CHROME_BROWSER_EXTENSIONS_PLATFORM_APP_SERVICE_FACTORY_H_ |
| +#define CHROME_BROWSER_EXTENSIONS_PLATFORM_APP_SERVICE_FACTORY_H_ |
| + |
| +#include "base/memory/singleton.h" |
| +#include "chrome/browser/extensions/platform_app_service.h" |
| +#include "chrome/browser/profiles/profile.h" |
| +#include "chrome/browser/profiles/profile_keyed_service_factory.h" |
| + |
| +namespace extensions { |
| + |
| +class PlatformAppServiceFactory : public ProfileKeyedServiceFactory { |
|
Andrew T Wilson (Slow)
2012/11/28 10:16:24
nit: (again, fine as-is) it's nice to document if
|
| + public: |
| + static PlatformAppService* GetForProfile(Profile* profile); |
| + |
| + static PlatformAppServiceFactory* GetInstance(); |
| + private: |
| + friend struct DefaultSingletonTraits<PlatformAppServiceFactory>; |
| + |
| + PlatformAppServiceFactory(); |
| + virtual ~PlatformAppServiceFactory(); |
| + |
| + // ProfileKeyedServiceFactory |
| + virtual ProfileKeyedService* BuildServiceInstanceFor( |
| + Profile* profile) const OVERRIDE; |
| + virtual bool ServiceHasOwnInstanceInIncognito() const OVERRIDE; |
| + virtual bool ServiceIsCreatedWithProfile() const OVERRIDE; |
| + virtual bool ServiceIsNULLWhileTesting() const OVERRIDE; |
| +}; |
| + |
| +} // namespace extensions |
| + |
| +#endif // CHROME_BROWSER_EXTENSIONS_PLATFORM_APP_SERVICE_FACTORY_H_ |