| 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 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 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 int render_view_id, | 117 int render_view_id, |
| 118 int bridge_id, | 118 int bridge_id, |
| 119 int group_id, | 119 int group_id, |
| 120 const GURL& requesting_frame, | 120 const GURL& requesting_frame, |
| 121 const ProtectedMediaIdentifierPermissionCallback& callback) OVERRIDE; | 121 const ProtectedMediaIdentifierPermissionCallback& callback) OVERRIDE; |
| 122 virtual void CancelProtectedMediaIdentifierPermissionRequests( | 122 virtual void CancelProtectedMediaIdentifierPermissionRequests( |
| 123 int group_id) OVERRIDE; | 123 int group_id) OVERRIDE; |
| 124 virtual content::ResourceContext* GetResourceContext() OVERRIDE; | 124 virtual content::ResourceContext* GetResourceContext() OVERRIDE; |
| 125 virtual content::GeolocationPermissionContext* | 125 virtual content::GeolocationPermissionContext* |
| 126 GetGeolocationPermissionContext() OVERRIDE; | 126 GetGeolocationPermissionContext() OVERRIDE; |
| 127 virtual content::BrowserPluginGuestManagerDelegate* | 127 virtual content::BrowserPluginGuestManager* GetGuestManager() OVERRIDE; |
| 128 GetGuestManagerDelegate() OVERRIDE; | |
| 129 virtual quota::SpecialStoragePolicy* GetSpecialStoragePolicy() OVERRIDE; | 128 virtual quota::SpecialStoragePolicy* GetSpecialStoragePolicy() OVERRIDE; |
| 130 | 129 |
| 131 private: | 130 private: |
| 132 FRIEND_TEST_ALL_PREFIXES(OffTheRecordProfileImplTest, GetHostZoomMap); | 131 FRIEND_TEST_ALL_PREFIXES(OffTheRecordProfileImplTest, GetHostZoomMap); |
| 133 void InitIoData(); | 132 void InitIoData(); |
| 134 void InitHostZoomMap(); | 133 void InitHostZoomMap(); |
| 135 | 134 |
| 136 #if defined(OS_ANDROID) || defined(OS_IOS) | 135 #if defined(OS_ANDROID) || defined(OS_IOS) |
| 137 void UseSystemProxy(); | 136 void UseSystemProxy(); |
| 138 #endif // defined(OS_ANDROID) || defined(OS_IOS) | 137 #endif // defined(OS_ANDROID) || defined(OS_IOS) |
| (...skipping 18 matching lines...) Expand all Loading... |
| 157 base::FilePath last_selected_directory_; | 156 base::FilePath last_selected_directory_; |
| 158 | 157 |
| 159 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; | 158 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; |
| 160 | 159 |
| 161 scoped_ptr<content::HostZoomMap::Subscription> zoom_subscription_; | 160 scoped_ptr<content::HostZoomMap::Subscription> zoom_subscription_; |
| 162 | 161 |
| 163 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl); | 162 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl); |
| 164 }; | 163 }; |
| 165 | 164 |
| 166 #endif // CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ | 165 #endif // CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ |
| OLD | NEW |