| 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 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 int group_id, | 116 int group_id, |
| 117 const GURL& requesting_frame, | 117 const GURL& requesting_frame, |
| 118 const ProtectedMediaIdentifierPermissionCallback& callback) OVERRIDE; | 118 const ProtectedMediaIdentifierPermissionCallback& callback) OVERRIDE; |
| 119 virtual void CancelProtectedMediaIdentifierPermissionRequests(int group_id) | 119 virtual void CancelProtectedMediaIdentifierPermissionRequests(int group_id) |
| 120 OVERRIDE; | 120 OVERRIDE; |
| 121 virtual content::ResourceContext* GetResourceContext() OVERRIDE; | 121 virtual content::ResourceContext* GetResourceContext() OVERRIDE; |
| 122 virtual content::DownloadManagerDelegate* | 122 virtual content::DownloadManagerDelegate* |
| 123 GetDownloadManagerDelegate() OVERRIDE; | 123 GetDownloadManagerDelegate() OVERRIDE; |
| 124 virtual content::GeolocationPermissionContext* | 124 virtual content::GeolocationPermissionContext* |
| 125 GetGeolocationPermissionContext() OVERRIDE; | 125 GetGeolocationPermissionContext() OVERRIDE; |
| 126 virtual content::BrowserPluginGuestManagerDelegate* |
| 127 GetGuestManagerDelegate() OVERRIDE; |
| 126 virtual quota::SpecialStoragePolicy* GetSpecialStoragePolicy() OVERRIDE; | 128 virtual quota::SpecialStoragePolicy* GetSpecialStoragePolicy() OVERRIDE; |
| 127 | 129 |
| 128 // visitedlink::VisitedLinkDelegate implementation. | 130 // visitedlink::VisitedLinkDelegate implementation. |
| 129 virtual void RebuildTable( | 131 virtual void RebuildTable( |
| 130 const scoped_refptr<URLEnumerator>& enumerator) OVERRIDE; | 132 const scoped_refptr<URLEnumerator>& enumerator) OVERRIDE; |
| 131 | 133 |
| 132 private: | 134 private: |
| 133 // The file path where data for this context is persisted. | 135 // The file path where data for this context is persisted. |
| 134 base::FilePath context_storage_path_; | 136 base::FilePath context_storage_path_; |
| 135 | 137 |
| (...skipping 13 matching lines...) Expand all Loading... |
| 149 scoped_ptr<PrefService> user_pref_service_; | 151 scoped_ptr<PrefService> user_pref_service_; |
| 150 | 152 |
| 151 scoped_ptr<DataReductionProxySettings> data_reduction_proxy_settings_; | 153 scoped_ptr<DataReductionProxySettings> data_reduction_proxy_settings_; |
| 152 | 154 |
| 153 DISALLOW_COPY_AND_ASSIGN(AwBrowserContext); | 155 DISALLOW_COPY_AND_ASSIGN(AwBrowserContext); |
| 154 }; | 156 }; |
| 155 | 157 |
| 156 } // namespace android_webview | 158 } // namespace android_webview |
| 157 | 159 |
| 158 #endif // ANDROID_WEBVIEW_BROWSER_AW_BROWSER_CONTEXT_H_ | 160 #endif // ANDROID_WEBVIEW_BROWSER_AW_BROWSER_CONTEXT_H_ |
| OLD | NEW |