| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_EXTENSIONS_API_EXTENSION_ACTION_SCRIPT_BADGE_API_FACTORY_
H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_API_EXTENSION_ACTION_EXTENSION_ACTION_API_FACT
ORY_H_ |
| 6 #define CHROME_BROWSER_EXTENSIONS_API_EXTENSION_ACTION_SCRIPT_BADGE_API_FACTORY_
H_ | 6 #define CHROME_BROWSER_EXTENSIONS_API_EXTENSION_ACTION_EXTENSION_ACTION_API_FACT
ORY_H_ |
| 7 | 7 |
| 8 #include "base/memory/singleton.h" | 8 #include "base/memory/singleton.h" |
| 9 #include "chrome/browser/profiles/profile_keyed_service_factory.h" | 9 #include "chrome/browser/profiles/profile_keyed_service_factory.h" |
| 10 | 10 |
| 11 namespace extensions { | 11 namespace extensions { |
| 12 | 12 |
| 13 class ScriptBadgeAPI; | 13 class ExtensionActionAPI; |
| 14 | 14 |
| 15 class ScriptBadgeAPIFactory : public ProfileKeyedServiceFactory { | 15 class ExtensionActionAPIFactory : public ProfileKeyedServiceFactory { |
| 16 public: | 16 public: |
| 17 static ScriptBadgeAPIFactory* GetInstance(); | 17 static ExtensionActionAPIFactory* GetInstance(); |
| 18 | 18 |
| 19 private: | 19 private: |
| 20 friend struct DefaultSingletonTraits<ScriptBadgeAPIFactory>; | 20 friend struct DefaultSingletonTraits<ExtensionActionAPIFactory>; |
| 21 | 21 |
| 22 ScriptBadgeAPIFactory(); | 22 ExtensionActionAPIFactory(); |
| 23 virtual ~ScriptBadgeAPIFactory(); | 23 virtual ~ExtensionActionAPIFactory(); |
| 24 | 24 |
| 25 // ProfileKeyedServiceFactory implementation. | 25 // ProfileKeyedServiceFactory implementation. |
| 26 virtual ProfileKeyedService* BuildServiceInstanceFor( | 26 virtual ProfileKeyedService* BuildServiceInstanceFor( |
| 27 Profile* profile) const OVERRIDE; | 27 Profile* profile) const OVERRIDE; |
| 28 virtual bool ServiceIsCreatedWithProfile() const OVERRIDE; | 28 virtual bool ServiceIsCreatedWithProfile() const OVERRIDE; |
| 29 }; | 29 }; |
| 30 | 30 |
| 31 } // namespace extensions | 31 } // namespace extensions |
| 32 | 32 |
| 33 #endif // CHROME_BROWSER_EXTENSIONS_API_EXTENSION_ACTION_SCRIPT_BADGE_API_FACTO
RY_H_ | 33 #endif // CHROME_BROWSER_EXTENSIONS_API_EXTENSION_ACTION_EXTENSION_ACTION_API_F
ACTORY_H_ |
| OLD | NEW |