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

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

Issue 11147026: Initial refactor to get profiles to propagate storage partition details. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Missed a merging of removed variable. Created 8 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
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 #ifndef CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ 5 #ifndef CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_
6 #define CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ 6 #define CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/gtest_prod_util.h" 10 #include "base/gtest_prod_util.h"
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 virtual GAIAInfoUpdateService* GetGAIAInfoUpdateService() OVERRIDE; 44 virtual GAIAInfoUpdateService* GetGAIAInfoUpdateService() OVERRIDE;
45 virtual policy::UserCloudPolicyManager* GetUserCloudPolicyManager() OVERRIDE; 45 virtual policy::UserCloudPolicyManager* GetUserCloudPolicyManager() OVERRIDE;
46 virtual policy::ManagedModePolicyProvider* 46 virtual policy::ManagedModePolicyProvider*
47 GetManagedModePolicyProvider() OVERRIDE; 47 GetManagedModePolicyProvider() OVERRIDE;
48 virtual policy::PolicyService* GetPolicyService() OVERRIDE; 48 virtual policy::PolicyService* GetPolicyService() OVERRIDE;
49 virtual PrefService* GetPrefs() OVERRIDE; 49 virtual PrefService* GetPrefs() OVERRIDE;
50 virtual PrefService* GetOffTheRecordPrefs() OVERRIDE; 50 virtual PrefService* GetOffTheRecordPrefs() OVERRIDE;
51 virtual net::URLRequestContextGetter* 51 virtual net::URLRequestContextGetter*
52 GetRequestContextForExtensions() OVERRIDE; 52 GetRequestContextForExtensions() OVERRIDE;
53 virtual net::URLRequestContextGetter* GetRequestContextForStoragePartition( 53 virtual net::URLRequestContextGetter* GetRequestContextForStoragePartition(
54 const std::string& partition_id) OVERRIDE; 54 const FilePath& partition_path,
55 bool in_memory) OVERRIDE;
55 virtual net::SSLConfigService* GetSSLConfigService() OVERRIDE; 56 virtual net::SSLConfigService* GetSSLConfigService() OVERRIDE;
56 virtual HostContentSettingsMap* GetHostContentSettingsMap() OVERRIDE; 57 virtual HostContentSettingsMap* GetHostContentSettingsMap() OVERRIDE;
57 virtual ProtocolHandlerRegistry* GetProtocolHandlerRegistry() OVERRIDE; 58 virtual ProtocolHandlerRegistry* GetProtocolHandlerRegistry() OVERRIDE;
58 virtual bool IsSameProfile(Profile* profile) OVERRIDE; 59 virtual bool IsSameProfile(Profile* profile) OVERRIDE;
59 virtual Time GetStartTime() const OVERRIDE; 60 virtual Time GetStartTime() const OVERRIDE;
60 virtual history::TopSites* GetTopSitesWithoutCreating() OVERRIDE; 61 virtual history::TopSites* GetTopSitesWithoutCreating() OVERRIDE;
61 virtual history::TopSites* GetTopSites() OVERRIDE; 62 virtual history::TopSites* GetTopSites() OVERRIDE;
62 virtual void InitPromoResources() OVERRIDE; 63 virtual void InitPromoResources() OVERRIDE;
63 virtual FilePath last_selected_directory() OVERRIDE; 64 virtual FilePath last_selected_directory() OVERRIDE;
64 virtual void set_last_selected_directory(const FilePath& path) OVERRIDE; 65 virtual void set_last_selected_directory(const FilePath& path) OVERRIDE;
(...skipping 22 matching lines...) Expand all
87 virtual content::DownloadManagerDelegate* 88 virtual content::DownloadManagerDelegate*
88 GetDownloadManagerDelegate() OVERRIDE; 89 GetDownloadManagerDelegate() OVERRIDE;
89 virtual net::URLRequestContextGetter* GetRequestContext() OVERRIDE; 90 virtual net::URLRequestContextGetter* GetRequestContext() OVERRIDE;
90 virtual net::URLRequestContextGetter* GetRequestContextForRenderProcess( 91 virtual net::URLRequestContextGetter* GetRequestContextForRenderProcess(
91 int renderer_child_id) OVERRIDE; 92 int renderer_child_id) OVERRIDE;
92 virtual net::URLRequestContextGetter* GetMediaRequestContext() OVERRIDE; 93 virtual net::URLRequestContextGetter* GetMediaRequestContext() OVERRIDE;
93 virtual net::URLRequestContextGetter* GetMediaRequestContextForRenderProcess( 94 virtual net::URLRequestContextGetter* GetMediaRequestContextForRenderProcess(
94 int renderer_child_id) OVERRIDE; 95 int renderer_child_id) OVERRIDE;
95 virtual net::URLRequestContextGetter* 96 virtual net::URLRequestContextGetter*
96 GetMediaRequestContextForStoragePartition( 97 GetMediaRequestContextForStoragePartition(
97 const std::string& partition_id) OVERRIDE; 98 const FilePath& partition_path,
99 bool in_memory) OVERRIDE;
98 virtual content::ResourceContext* GetResourceContext() OVERRIDE; 100 virtual content::ResourceContext* GetResourceContext() OVERRIDE;
99 virtual content::GeolocationPermissionContext* 101 virtual content::GeolocationPermissionContext*
100 GetGeolocationPermissionContext() OVERRIDE; 102 GetGeolocationPermissionContext() OVERRIDE;
101 virtual content::SpeechRecognitionPreferences* 103 virtual content::SpeechRecognitionPreferences*
102 GetSpeechRecognitionPreferences() OVERRIDE; 104 GetSpeechRecognitionPreferences() OVERRIDE;
103 virtual quota::SpecialStoragePolicy* GetSpecialStoragePolicy() OVERRIDE; 105 virtual quota::SpecialStoragePolicy* GetSpecialStoragePolicy() OVERRIDE;
104 106
105 // content::NotificationObserver implementation. 107 // content::NotificationObserver implementation.
106 virtual void Observe(int type, 108 virtual void Observe(int type,
107 const content::NotificationSource& source, 109 const content::NotificationSource& source,
(...skipping 27 matching lines...) Expand all
135 Time start_time_; 137 Time start_time_;
136 138
137 FilePath last_selected_directory_; 139 FilePath last_selected_directory_;
138 140
139 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; 141 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_;
140 142
141 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl); 143 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl);
142 }; 144 };
143 145
144 #endif // CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ 146 #endif // CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_
OLDNEW
« no previous file with comments | « chrome/browser/net/chrome_url_request_context.cc ('k') | chrome/browser/profiles/off_the_record_profile_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698