Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(369)

Side by Side Diff: chrome/browser/ui/app_list/search/common/webservice_cache_factory.cc

Issue 49353006: Add caching for apps list search results. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #include "chrome/browser/ui/app_list/search/common/webservice_cache_factory.h"
6
7 #include "base/memory/singleton.h"
8 #include "chrome/browser/ui/app_list/search/common/webservice_cache.h"
9 #include "components/browser_context_keyed_service/browser_context_dependency_ma nager.h"
10
11 namespace app_list {
12
13 // static
14 WebserviceCacheFactory* WebserviceCacheFactory::GetInstance() {
15 return Singleton<WebserviceCacheFactory>::get();
16 }
17
18 // static
19 WebserviceCache* WebserviceCacheFactory::GetForBrowserContext(
20 content::BrowserContext* context) {
21 return static_cast<WebserviceCache*>(
22 GetInstance()->GetServiceForBrowserContext(context, true));
23 }
24
25 WebserviceCacheFactory::WebserviceCacheFactory()
26 : BrowserContextKeyedServiceFactory(
27 "app_list::WebserviceCache",
28 BrowserContextDependencyManager::GetInstance()) {}
29
30 WebserviceCacheFactory::~WebserviceCacheFactory() {}
31
32 BrowserContextKeyedService* WebserviceCacheFactory::BuildServiceInstanceFor(
33 content::BrowserContext* context) const {
34 return new WebserviceCache(context);
35 }
36
37 } // namespace app_list
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698