| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_UI_APP_LIST_SEARCH_COMMON_WEBSERVICE_CACHE_FACTORY_H_ | 5 #ifndef CHROME_BROWSER_UI_APP_LIST_SEARCH_COMMON_WEBSERVICE_CACHE_FACTORY_H_ |
| 6 #define CHROME_BROWSER_UI_APP_LIST_SEARCH_COMMON_WEBSERVICE_CACHE_FACTORY_H_ | 6 #define CHROME_BROWSER_UI_APP_LIST_SEARCH_COMMON_WEBSERVICE_CACHE_FACTORY_H_ |
| 7 | 7 |
| 8 #include "components/keyed_service/content/browser_context_keyed_service_factory
.h" | 8 #include "components/keyed_service/content/browser_context_keyed_service_factory
.h" |
| 9 | 9 |
| 10 namespace base { |
| 10 template<typename T> struct DefaultSingletonTraits; | 11 template<typename T> struct DefaultSingletonTraits; |
| 12 } |
| 11 | 13 |
| 12 namespace content { | 14 namespace content { |
| 13 class BrowserContext; | 15 class BrowserContext; |
| 14 } | 16 } |
| 15 | 17 |
| 16 namespace app_list { | 18 namespace app_list { |
| 17 | 19 |
| 18 class WebserviceCache; | 20 class WebserviceCache; |
| 19 | 21 |
| 20 // Singleton that owns the WebserviceCaches and associates them with profiles; | 22 // Singleton that owns the WebserviceCaches and associates them with profiles; |
| 21 class WebserviceCacheFactory : public BrowserContextKeyedServiceFactory { | 23 class WebserviceCacheFactory : public BrowserContextKeyedServiceFactory { |
| 22 public: | 24 public: |
| 23 // Returns singleton instance of WebserviceCacheFactory. | 25 // Returns singleton instance of WebserviceCacheFactory. |
| 24 static WebserviceCacheFactory* GetInstance(); | 26 static WebserviceCacheFactory* GetInstance(); |
| 25 | 27 |
| 26 // Returns the Webservice cache associated with |context|. | 28 // Returns the Webservice cache associated with |context|. |
| 27 static WebserviceCache* GetForBrowserContext( | 29 static WebserviceCache* GetForBrowserContext( |
| 28 content::BrowserContext* context); | 30 content::BrowserContext* context); |
| 29 | 31 |
| 30 private: | 32 private: |
| 31 friend struct DefaultSingletonTraits<WebserviceCacheFactory>; | 33 friend struct base::DefaultSingletonTraits<WebserviceCacheFactory>; |
| 32 | 34 |
| 33 WebserviceCacheFactory(); | 35 WebserviceCacheFactory(); |
| 34 ~WebserviceCacheFactory() override; | 36 ~WebserviceCacheFactory() override; |
| 35 | 37 |
| 36 // BrowserContextKeyedServiceFactory overrides: | 38 // BrowserContextKeyedServiceFactory overrides: |
| 37 KeyedService* BuildServiceInstanceFor( | 39 KeyedService* BuildServiceInstanceFor( |
| 38 content::BrowserContext* context) const override; | 40 content::BrowserContext* context) const override; |
| 39 | 41 |
| 40 DISALLOW_COPY_AND_ASSIGN(WebserviceCacheFactory); | 42 DISALLOW_COPY_AND_ASSIGN(WebserviceCacheFactory); |
| 41 }; | 43 }; |
| 42 | 44 |
| 43 } // namespace app_list | 45 } // namespace app_list |
| 44 | 46 |
| 45 #endif // CHROME_BROWSER_UI_APP_LIST_SEARCH_COMMON_WEBSERVICE_CACHE_FACTORY_H_ | 47 #endif // CHROME_BROWSER_UI_APP_LIST_SEARCH_COMMON_WEBSERVICE_CACHE_FACTORY_H_ |
| OLD | NEW |