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

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

Issue 369703002: Remember user decisions on invalid certificates behind a flag (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: More fixes from sleevi plus a rebase on ToT Created 6 years, 5 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 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 virtual net::URLRequestContextGetter* GetMediaRequestContextForRenderProcess( 98 virtual net::URLRequestContextGetter* GetMediaRequestContextForRenderProcess(
99 int renderer_child_id) OVERRIDE; 99 int renderer_child_id) OVERRIDE;
100 virtual net::URLRequestContextGetter* 100 virtual net::URLRequestContextGetter*
101 GetMediaRequestContextForStoragePartition( 101 GetMediaRequestContextForStoragePartition(
102 const base::FilePath& partition_path, 102 const base::FilePath& partition_path,
103 bool in_memory) OVERRIDE; 103 bool in_memory) OVERRIDE;
104 virtual content::ResourceContext* GetResourceContext() OVERRIDE; 104 virtual content::ResourceContext* GetResourceContext() OVERRIDE;
105 virtual content::BrowserPluginGuestManager* GetGuestManager() OVERRIDE; 105 virtual content::BrowserPluginGuestManager* GetGuestManager() OVERRIDE;
106 virtual quota::SpecialStoragePolicy* GetSpecialStoragePolicy() OVERRIDE; 106 virtual quota::SpecialStoragePolicy* GetSpecialStoragePolicy() OVERRIDE;
107 virtual content::PushMessagingService* GetPushMessagingService() OVERRIDE; 107 virtual content::PushMessagingService* GetPushMessagingService() OVERRIDE;
108 virtual content::SSLHostStateDecisions* GetSSLHostStateDecisions() OVERRIDE;
108 109
109 private: 110 private:
110 FRIEND_TEST_ALL_PREFIXES(OffTheRecordProfileImplTest, GetHostZoomMap); 111 FRIEND_TEST_ALL_PREFIXES(OffTheRecordProfileImplTest, GetHostZoomMap);
111 void InitIoData(); 112 void InitIoData();
112 void InitHostZoomMap(); 113 void InitHostZoomMap();
113 114
114 #if defined(OS_ANDROID) || defined(OS_IOS) 115 #if defined(OS_ANDROID) || defined(OS_IOS)
115 void UseSystemProxy(); 116 void UseSystemProxy();
116 #endif // defined(OS_ANDROID) || defined(OS_IOS) 117 #endif // defined(OS_ANDROID) || defined(OS_IOS)
117 118
(...skipping 17 matching lines...) Expand all
135 base::FilePath last_selected_directory_; 136 base::FilePath last_selected_directory_;
136 137
137 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; 138 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_;
138 139
139 scoped_ptr<content::HostZoomMap::Subscription> zoom_subscription_; 140 scoped_ptr<content::HostZoomMap::Subscription> zoom_subscription_;
140 141
141 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl); 142 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl);
142 }; 143 };
143 144
144 #endif // CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ 145 #endif // CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698