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

Side by Side Diff: android_webview/browser/aw_browser_context.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 ANDROID_WEBVIEW_BROWSER_AW_BROWSER_CONTEXT_H_ 5 #ifndef ANDROID_WEBVIEW_BROWSER_AW_BROWSER_CONTEXT_H_
6 #define ANDROID_WEBVIEW_BROWSER_AW_BROWSER_CONTEXT_H_ 6 #define ANDROID_WEBVIEW_BROWSER_AW_BROWSER_CONTEXT_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "android_webview/browser/aw_download_manager_delegate.h" 10 #include "android_webview/browser/aw_download_manager_delegate.h"
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 int renderer_child_id) OVERRIDE; 104 int renderer_child_id) OVERRIDE;
105 virtual net::URLRequestContextGetter* 105 virtual net::URLRequestContextGetter*
106 GetMediaRequestContextForStoragePartition( 106 GetMediaRequestContextForStoragePartition(
107 const base::FilePath& partition_path, bool in_memory) OVERRIDE; 107 const base::FilePath& partition_path, bool in_memory) OVERRIDE;
108 virtual content::ResourceContext* GetResourceContext() OVERRIDE; 108 virtual content::ResourceContext* GetResourceContext() OVERRIDE;
109 virtual content::DownloadManagerDelegate* 109 virtual content::DownloadManagerDelegate*
110 GetDownloadManagerDelegate() OVERRIDE; 110 GetDownloadManagerDelegate() OVERRIDE;
111 virtual content::BrowserPluginGuestManager* GetGuestManager() OVERRIDE; 111 virtual content::BrowserPluginGuestManager* GetGuestManager() OVERRIDE;
112 virtual quota::SpecialStoragePolicy* GetSpecialStoragePolicy() OVERRIDE; 112 virtual quota::SpecialStoragePolicy* GetSpecialStoragePolicy() OVERRIDE;
113 virtual content::PushMessagingService* GetPushMessagingService() OVERRIDE; 113 virtual content::PushMessagingService* GetPushMessagingService() OVERRIDE;
114 virtual content::SSLHostStateDecisions* GetSSLHostStateDecisions() OVERRIDE;
114 115
115 // visitedlink::VisitedLinkDelegate implementation. 116 // visitedlink::VisitedLinkDelegate implementation.
116 virtual void RebuildTable( 117 virtual void RebuildTable(
117 const scoped_refptr<URLEnumerator>& enumerator) OVERRIDE; 118 const scoped_refptr<URLEnumerator>& enumerator) OVERRIDE;
118 119
119 private: 120 private:
120 static bool data_reduction_proxy_enabled_; 121 static bool data_reduction_proxy_enabled_;
121 122
122 // The file path where data for this context is persisted. 123 // The file path where data for this context is persisted.
123 base::FilePath context_storage_path_; 124 base::FilePath context_storage_path_;
(...skipping 14 matching lines...) Expand all
138 scoped_ptr<DataReductionProxySettings> data_reduction_proxy_settings_; 139 scoped_ptr<DataReductionProxySettings> data_reduction_proxy_settings_;
139 scoped_ptr<DataReductionProxyAuthRequestHandler> 140 scoped_ptr<DataReductionProxyAuthRequestHandler>
140 data_reduction_proxy_auth_request_handler_; 141 data_reduction_proxy_auth_request_handler_;
141 142
142 DISALLOW_COPY_AND_ASSIGN(AwBrowserContext); 143 DISALLOW_COPY_AND_ASSIGN(AwBrowserContext);
143 }; 144 };
144 145
145 } // namespace android_webview 146 } // namespace android_webview
146 147
147 #endif // ANDROID_WEBVIEW_BROWSER_AW_BROWSER_CONTEXT_H_ 148 #endif // ANDROID_WEBVIEW_BROWSER_AW_BROWSER_CONTEXT_H_
OLDNEW
« no previous file with comments | « no previous file | android_webview/browser/aw_browser_context.cc » ('j') | android_webview/browser/aw_browser_context.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698