| 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 <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 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 virtual net::URLRequestContextGetter* GetMediaRequestContext() OVERRIDE; | 98 virtual net::URLRequestContextGetter* GetMediaRequestContext() OVERRIDE; |
| 99 virtual net::URLRequestContextGetter* GetMediaRequestContextForRenderProcess( | 99 virtual net::URLRequestContextGetter* GetMediaRequestContextForRenderProcess( |
| 100 int renderer_child_id) OVERRIDE; | 100 int renderer_child_id) OVERRIDE; |
| 101 virtual net::URLRequestContextGetter* | 101 virtual net::URLRequestContextGetter* |
| 102 GetMediaRequestContextForStoragePartition( | 102 GetMediaRequestContextForStoragePartition( |
| 103 const base::FilePath& partition_path, bool in_memory) OVERRIDE; | 103 const base::FilePath& partition_path, bool in_memory) OVERRIDE; |
| 104 virtual content::ResourceContext* GetResourceContext() OVERRIDE; | 104 virtual content::ResourceContext* GetResourceContext() OVERRIDE; |
| 105 virtual content::DownloadManagerDelegate* | 105 virtual content::DownloadManagerDelegate* |
| 106 GetDownloadManagerDelegate() OVERRIDE; | 106 GetDownloadManagerDelegate() OVERRIDE; |
| 107 virtual content::BrowserPluginGuestManager* GetGuestManager() OVERRIDE; | 107 virtual content::BrowserPluginGuestManager* GetGuestManager() OVERRIDE; |
| 108 virtual quota::SpecialStoragePolicy* GetSpecialStoragePolicy() OVERRIDE; | 108 virtual storage::SpecialStoragePolicy* GetSpecialStoragePolicy() OVERRIDE; |
| 109 virtual content::PushMessagingService* GetPushMessagingService() OVERRIDE; | 109 virtual content::PushMessagingService* GetPushMessagingService() OVERRIDE; |
| 110 virtual content::SSLHostStateDelegate* GetSSLHostStateDelegate() OVERRIDE; | 110 virtual content::SSLHostStateDelegate* GetSSLHostStateDelegate() OVERRIDE; |
| 111 | 111 |
| 112 // visitedlink::VisitedLinkDelegate implementation. | 112 // visitedlink::VisitedLinkDelegate implementation. |
| 113 virtual void RebuildTable( | 113 virtual void RebuildTable( |
| 114 const scoped_refptr<URLEnumerator>& enumerator) OVERRIDE; | 114 const scoped_refptr<URLEnumerator>& enumerator) OVERRIDE; |
| 115 | 115 |
| 116 private: | 116 private: |
| 117 static bool data_reduction_proxy_enabled_; | 117 static bool data_reduction_proxy_enabled_; |
| 118 | 118 |
| (...skipping 17 matching lines...) Expand all Loading... |
| 136 data_reduction_proxy_configurator_; | 136 data_reduction_proxy_configurator_; |
| 137 scoped_ptr<data_reduction_proxy::DataReductionProxySettings> | 137 scoped_ptr<data_reduction_proxy::DataReductionProxySettings> |
| 138 data_reduction_proxy_settings_; | 138 data_reduction_proxy_settings_; |
| 139 | 139 |
| 140 DISALLOW_COPY_AND_ASSIGN(AwBrowserContext); | 140 DISALLOW_COPY_AND_ASSIGN(AwBrowserContext); |
| 141 }; | 141 }; |
| 142 | 142 |
| 143 } // namespace android_webview | 143 } // namespace android_webview |
| 144 | 144 |
| 145 #endif // ANDROID_WEBVIEW_BROWSER_AW_BROWSER_CONTEXT_H_ | 145 #endif // ANDROID_WEBVIEW_BROWSER_AW_BROWSER_CONTEXT_H_ |
| OLD | NEW |