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

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

Issue 12546016: Remove the Extensions URLRequestContext (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 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 #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 29 matching lines...) Expand all
40 virtual bool HasOffTheRecordProfile() OVERRIDE; 40 virtual bool HasOffTheRecordProfile() OVERRIDE;
41 virtual Profile* GetOriginalProfile() OVERRIDE; 41 virtual Profile* GetOriginalProfile() OVERRIDE;
42 virtual ExtensionService* GetExtensionService() OVERRIDE; 42 virtual ExtensionService* GetExtensionService() OVERRIDE;
43 virtual ExtensionSpecialStoragePolicy* 43 virtual ExtensionSpecialStoragePolicy*
44 GetExtensionSpecialStoragePolicy() OVERRIDE; 44 GetExtensionSpecialStoragePolicy() OVERRIDE;
45 virtual policy::ManagedModePolicyProvider* 45 virtual policy::ManagedModePolicyProvider*
46 GetManagedModePolicyProvider() OVERRIDE; 46 GetManagedModePolicyProvider() OVERRIDE;
47 virtual policy::PolicyService* GetPolicyService() OVERRIDE; 47 virtual policy::PolicyService* GetPolicyService() OVERRIDE;
48 virtual PrefService* GetPrefs() OVERRIDE; 48 virtual PrefService* GetPrefs() OVERRIDE;
49 virtual PrefService* GetOffTheRecordPrefs() OVERRIDE; 49 virtual PrefService* GetOffTheRecordPrefs() OVERRIDE;
50 virtual net::URLRequestContextGetter*
51 GetRequestContextForExtensions() OVERRIDE;
52 virtual net::URLRequestContextGetter* CreateRequestContext( 50 virtual net::URLRequestContextGetter* CreateRequestContext(
53 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> 51 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
54 blob_protocol_handler, 52 blob_protocol_handler,
55 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> 53 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
56 file_system_protocol_handler, 54 file_system_protocol_handler,
57 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> 55 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
58 developer_protocol_handler, 56 developer_protocol_handler,
59 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> 57 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
60 chrome_protocol_handler, 58 chrome_protocol_handler,
61 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> 59 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
153 base::FilePath last_selected_directory_; 151 base::FilePath last_selected_directory_;
154 152
155 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; 153 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_;
156 154
157 content::HostZoomMap::ZoomLevelChangedCallback zoom_callback_; 155 content::HostZoomMap::ZoomLevelChangedCallback zoom_callback_;
158 156
159 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl); 157 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl);
160 }; 158 };
161 159
162 #endif // CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ 160 #endif // CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698