OLD | NEW |
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 <memory> | 8 #include <memory> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
95 base::FilePath GetPath() const override; | 95 base::FilePath GetPath() const override; |
96 bool IsOffTheRecord() const override; | 96 bool IsOffTheRecord() const override; |
97 content::ResourceContext* GetResourceContext() override; | 97 content::ResourceContext* GetResourceContext() override; |
98 content::DownloadManagerDelegate* GetDownloadManagerDelegate() override; | 98 content::DownloadManagerDelegate* GetDownloadManagerDelegate() override; |
99 content::BrowserPluginGuestManager* GetGuestManager() override; | 99 content::BrowserPluginGuestManager* GetGuestManager() override; |
100 storage::SpecialStoragePolicy* GetSpecialStoragePolicy() override; | 100 storage::SpecialStoragePolicy* GetSpecialStoragePolicy() override; |
101 content::PushMessagingService* GetPushMessagingService() override; | 101 content::PushMessagingService* GetPushMessagingService() override; |
102 content::SSLHostStateDelegate* GetSSLHostStateDelegate() override; | 102 content::SSLHostStateDelegate* GetSSLHostStateDelegate() override; |
103 content::PermissionManager* GetPermissionManager() override; | 103 content::PermissionManager* GetPermissionManager() override; |
104 content::BackgroundSyncController* GetBackgroundSyncController() override; | 104 content::BackgroundSyncController* GetBackgroundSyncController() override; |
| 105 content::BrowsingDataRemoverDelegate* GetBrowsingDataRemoverDelegate() |
| 106 override; |
105 net::URLRequestContextGetter* CreateRequestContext( | 107 net::URLRequestContextGetter* CreateRequestContext( |
106 content::ProtocolHandlerMap* protocol_handlers, | 108 content::ProtocolHandlerMap* protocol_handlers, |
107 content::URLRequestInterceptorScopedVector request_interceptors) override; | 109 content::URLRequestInterceptorScopedVector request_interceptors) override; |
108 net::URLRequestContextGetter* CreateRequestContextForStoragePartition( | 110 net::URLRequestContextGetter* CreateRequestContextForStoragePartition( |
109 const base::FilePath& partition_path, | 111 const base::FilePath& partition_path, |
110 bool in_memory, | 112 bool in_memory, |
111 content::ProtocolHandlerMap* protocol_handlers, | 113 content::ProtocolHandlerMap* protocol_handlers, |
112 content::URLRequestInterceptorScopedVector request_interceptors) override; | 114 content::URLRequestInterceptorScopedVector request_interceptors) override; |
113 net::URLRequestContextGetter* CreateMediaRequestContext() override; | 115 net::URLRequestContextGetter* CreateMediaRequestContext() override; |
114 net::URLRequestContextGetter* CreateMediaRequestContextForStoragePartition( | 116 net::URLRequestContextGetter* CreateMediaRequestContextForStoragePartition( |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
157 scoped_refptr<safe_browsing::RemoteSafeBrowsingDatabaseManager> | 159 scoped_refptr<safe_browsing::RemoteSafeBrowsingDatabaseManager> |
158 safe_browsing_db_manager_; | 160 safe_browsing_db_manager_; |
159 bool safe_browsing_db_manager_started_ = false; | 161 bool safe_browsing_db_manager_started_ = false; |
160 | 162 |
161 DISALLOW_COPY_AND_ASSIGN(AwBrowserContext); | 163 DISALLOW_COPY_AND_ASSIGN(AwBrowserContext); |
162 }; | 164 }; |
163 | 165 |
164 } // namespace android_webview | 166 } // namespace android_webview |
165 | 167 |
166 #endif // ANDROID_WEBVIEW_BROWSER_AW_BROWSER_CONTEXT_H_ | 168 #endif // ANDROID_WEBVIEW_BROWSER_AW_BROWSER_CONTEXT_H_ |
OLD | NEW |