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

Side by Side Diff: chrome/browser/extensions/api/discovery/suggested_links_registry_factory.cc

Issue 13865012: Change GetProfileToUse method from Profile to content::BrowserContext (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: trybots Created 7 years, 7 months 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
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 #include "chrome/browser/extensions/api/discovery/suggested_links_registry_facto ry.h" 5 #include "chrome/browser/extensions/api/discovery/suggested_links_registry_facto ry.h"
6 6
7 #include "chrome/browser/extensions/api/discovery/suggested_links_registry.h" 7 #include "chrome/browser/extensions/api/discovery/suggested_links_registry.h"
8 #include "chrome/browser/extensions/extension_system_factory.h" 8 #include "chrome/browser/extensions/extension_system_factory.h"
9 #include "chrome/browser/profiles/incognito_helpers.h"
9 #include "chrome/browser/profiles/profile.h" 10 #include "chrome/browser/profiles/profile.h"
10 #include "chrome/browser/profiles/profile_dependency_manager.h" 11 #include "chrome/browser/profiles/profile_dependency_manager.h"
11 12
12 namespace extensions { 13 namespace extensions {
13 14
14 // static 15 // static
15 SuggestedLinksRegistry* SuggestedLinksRegistryFactory::GetForProfile( 16 SuggestedLinksRegistry* SuggestedLinksRegistryFactory::GetForProfile(
16 Profile* profile) { 17 Profile* profile) {
17 return static_cast<SuggestedLinksRegistry*>( 18 return static_cast<SuggestedLinksRegistry*>(
18 GetInstance()->GetServiceForProfile(profile, true)); 19 GetInstance()->GetServiceForProfile(profile, true));
(...skipping 15 matching lines...) Expand all
34 } 35 }
35 36
36 SuggestedLinksRegistryFactory::~SuggestedLinksRegistryFactory() { 37 SuggestedLinksRegistryFactory::~SuggestedLinksRegistryFactory() {
37 } 38 }
38 39
39 ProfileKeyedService* SuggestedLinksRegistryFactory::BuildServiceInstanceFor( 40 ProfileKeyedService* SuggestedLinksRegistryFactory::BuildServiceInstanceFor(
40 content::BrowserContext* profile) const { 41 content::BrowserContext* profile) const {
41 return new SuggestedLinksRegistry(); 42 return new SuggestedLinksRegistry();
42 } 43 }
43 44
44 bool SuggestedLinksRegistryFactory::ServiceRedirectedInIncognito() const { 45 content::BrowserContext* SuggestedLinksRegistryFactory::GetBrowserContextToUse(
45 return true; 46 content::BrowserContext* context) const {
47 return chrome::GetBrowserContextRedirectedInIncognito(context);
46 } 48 }
47 49
48 } // namespace extensions 50 } // namespace extensions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698