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

Side by Side Diff: chrome/browser/profiles/profile_impl.h

Issue 7633029: Remove extension.h #include from profile.h. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix unit_tests. Created 9 years, 4 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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 // This class gathers state related to a single user profile. 5 // This class gathers state related to a single user profile.
6 6
7 #ifndef CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ 7 #ifndef CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_
8 #define CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ 8 #define CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_
9 #pragma once 9 #pragma once
10 10
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 virtual net::URLRequestContextGetter* GetRequestContextForRenderProcess( 85 virtual net::URLRequestContextGetter* GetRequestContextForRenderProcess(
86 int renderer_child_id); 86 int renderer_child_id);
87 virtual net::URLRequestContextGetter* GetRequestContextForMedia(); 87 virtual net::URLRequestContextGetter* GetRequestContextForMedia();
88 virtual net::URLRequestContextGetter* GetRequestContextForExtensions(); 88 virtual net::URLRequestContextGetter* GetRequestContextForExtensions();
89 virtual net::URLRequestContextGetter* GetRequestContextForIsolatedApp( 89 virtual net::URLRequestContextGetter* GetRequestContextForIsolatedApp(
90 const std::string& app_id); 90 const std::string& app_id);
91 virtual const content::ResourceContext& GetResourceContext(); 91 virtual const content::ResourceContext& GetResourceContext();
92 virtual void RegisterExtensionWithRequestContexts(const Extension* extension); 92 virtual void RegisterExtensionWithRequestContexts(const Extension* extension);
93 virtual void UnregisterExtensionWithRequestContexts( 93 virtual void UnregisterExtensionWithRequestContexts(
94 const std::string& extension_id, 94 const std::string& extension_id,
95 const UnloadedExtensionInfo::Reason reason); 95 const extension_misc::UnloadedExtensionReason reason);
96 virtual net::SSLConfigService* GetSSLConfigService(); 96 virtual net::SSLConfigService* GetSSLConfigService();
97 virtual HostContentSettingsMap* GetHostContentSettingsMap(); 97 virtual HostContentSettingsMap* GetHostContentSettingsMap();
98 virtual HostZoomMap* GetHostZoomMap(); 98 virtual HostZoomMap* GetHostZoomMap();
99 virtual GeolocationContentSettingsMap* GetGeolocationContentSettingsMap(); 99 virtual GeolocationContentSettingsMap* GetGeolocationContentSettingsMap();
100 virtual GeolocationPermissionContext* GetGeolocationPermissionContext(); 100 virtual GeolocationPermissionContext* GetGeolocationPermissionContext();
101 virtual UserStyleSheetWatcher* GetUserStyleSheetWatcher(); 101 virtual UserStyleSheetWatcher* GetUserStyleSheetWatcher();
102 virtual FindBarState* GetFindBarState(); 102 virtual FindBarState* GetFindBarState();
103 virtual bool HasProfileSyncService() const; 103 virtual bool HasProfileSyncService() const;
104 virtual bool DidLastSessionExitCleanly(); 104 virtual bool DidLastSessionExitCleanly();
105 virtual BookmarkModel* GetBookmarkModel(); 105 virtual BookmarkModel* GetBookmarkModel();
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after
293 scoped_refptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; 293 scoped_refptr<PrefProxyConfigTracker> pref_proxy_config_tracker_;
294 294
295 scoped_ptr<ChromeURLDataManager> chrome_url_data_manager_; 295 scoped_ptr<ChromeURLDataManager> chrome_url_data_manager_;
296 296
297 Profile::Delegate* delegate_; 297 Profile::Delegate* delegate_;
298 298
299 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); 299 DISALLOW_COPY_AND_ASSIGN(ProfileImpl);
300 }; 300 };
301 301
302 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ 302 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698