| 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 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 124 const ProtectedMediaIdentifierPermissionCallback& callback) OVERRIDE; | 124 const ProtectedMediaIdentifierPermissionCallback& callback) OVERRIDE; |
| 125 virtual void CancelProtectedMediaIdentifierPermissionRequests( | 125 virtual void CancelProtectedMediaIdentifierPermissionRequests( |
| 126 int render_process_id, | 126 int render_process_id, |
| 127 int render_view_id, | 127 int render_view_id, |
| 128 const GURL& origin) OVERRIDE; | 128 const GURL& origin) OVERRIDE; |
| 129 virtual content::ResourceContext* GetResourceContext() OVERRIDE; | 129 virtual content::ResourceContext* GetResourceContext() OVERRIDE; |
| 130 virtual content::GeolocationPermissionContext* | 130 virtual content::GeolocationPermissionContext* |
| 131 GetGeolocationPermissionContext() OVERRIDE; | 131 GetGeolocationPermissionContext() OVERRIDE; |
| 132 virtual content::BrowserPluginGuestManager* GetGuestManager() OVERRIDE; | 132 virtual content::BrowserPluginGuestManager* GetGuestManager() OVERRIDE; |
| 133 virtual quota::SpecialStoragePolicy* GetSpecialStoragePolicy() OVERRIDE; | 133 virtual quota::SpecialStoragePolicy* GetSpecialStoragePolicy() OVERRIDE; |
| 134 virtual content::PushMessagingService* GetPushMessagingService() OVERRIDE; | |
| 135 | 134 |
| 136 private: | 135 private: |
| 137 FRIEND_TEST_ALL_PREFIXES(OffTheRecordProfileImplTest, GetHostZoomMap); | 136 FRIEND_TEST_ALL_PREFIXES(OffTheRecordProfileImplTest, GetHostZoomMap); |
| 138 void InitIoData(); | 137 void InitIoData(); |
| 139 void InitHostZoomMap(); | 138 void InitHostZoomMap(); |
| 140 | 139 |
| 141 #if defined(OS_ANDROID) || defined(OS_IOS) | 140 #if defined(OS_ANDROID) || defined(OS_IOS) |
| 142 void UseSystemProxy(); | 141 void UseSystemProxy(); |
| 143 #endif // defined(OS_ANDROID) || defined(OS_IOS) | 142 #endif // defined(OS_ANDROID) || defined(OS_IOS) |
| 144 | 143 |
| (...skipping 17 matching lines...) Expand all Loading... |
| 162 base::FilePath last_selected_directory_; | 161 base::FilePath last_selected_directory_; |
| 163 | 162 |
| 164 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; | 163 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; |
| 165 | 164 |
| 166 scoped_ptr<content::HostZoomMap::Subscription> zoom_subscription_; | 165 scoped_ptr<content::HostZoomMap::Subscription> zoom_subscription_; |
| 167 | 166 |
| 168 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl); | 167 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl); |
| 169 }; | 168 }; |
| 170 | 169 |
| 171 #endif // CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ | 170 #endif // CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ |
| OLD | NEW |