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 3 // found in the LICENSE file. 4 5 #ifndef CHROME_BROWSER_EXTENSIONS_API_SYSTEM_INDICATOR_SYSTEM_INDICATOR_MANAGER_FACTORY_H__ 6 #define CHROME_BROWSER_EXTENSIONS_API_SYSTEM_INDICATOR_SYSTEM_INDICATOR_MANAGER_FACTORY_H__ 7 8 #include "base/memory/singleton.h" 9 #include "components/keyed_service/content/browser_context_keyed_service_factory.h" 10 11 class Profile; 12 13 namespace extensions { 14 class SystemIndicatorManager; 15 16 // BrowserContextKeyedServiceFactory for each SystemIndicatorManager. 17 class SystemIndicatorManagerFactory : public BrowserContextKeyedServiceFactory { 18 public: 19 static SystemIndicatorManager* GetForProfile(Profile* profile); 20 21 static SystemIndicatorManagerFactory* GetInstance(); 22 23 private: 24 friend struct DefaultSingletonTraits<SystemIndicatorManagerFactory>; 25 26 SystemIndicatorManagerFactory(); 27 virtual ~SystemIndicatorManagerFactory(); 28 29 // BrowserContextKeyedBaseFactory implementation. 30 virtual KeyedService* BuildServiceInstanceFor( 31 content::BrowserContext* profile) const OVERRIDE; 32 }; 33 34 } // namespace extensions 35 36 #endif // CHROME_BROWSER_EXTENSIONS_API_SYSTEM_INDICATOR_SYSTEM_INDICATOR_MANAGER_FACTORY_H__ 37