| 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 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 int render_process_id, | 101 int render_process_id, |
| 102 int render_view_id, | 102 int render_view_id, |
| 103 int bridge_id, | 103 int bridge_id, |
| 104 const GURL& requesting_frame, | 104 const GURL& requesting_frame, |
| 105 const MIDISysExPermissionCallback& callback) OVERRIDE; | 105 const MIDISysExPermissionCallback& callback) OVERRIDE; |
| 106 virtual void CancelMIDISysExPermissionRequest( | 106 virtual void CancelMIDISysExPermissionRequest( |
| 107 int render_process_id, | 107 int render_process_id, |
| 108 int render_view_id, | 108 int render_view_id, |
| 109 int bridge_id, | 109 int bridge_id, |
| 110 const GURL& requesting_frame) OVERRIDE; | 110 const GURL& requesting_frame) OVERRIDE; |
| 111 virtual void RequestProtectedMediaIdentifierPermission( |
| 112 int render_process_id, |
| 113 int render_view_id, |
| 114 int bridge_id, |
| 115 const GURL& requesting_frame, |
| 116 const ProtectedMediaIdentifierPermissionCallback& callback) OVERRIDE; |
| 117 virtual void CancelProtectedMediaIdentifierPermissionRequest( |
| 118 int render_process_id, |
| 119 int render_view_id, |
| 120 int bridge_id, |
| 121 const GURL& requesting_frame) OVERRIDE; |
| 111 virtual content::ResourceContext* GetResourceContext() OVERRIDE; | 122 virtual content::ResourceContext* GetResourceContext() OVERRIDE; |
| 112 virtual content::GeolocationPermissionContext* | 123 virtual content::GeolocationPermissionContext* |
| 113 GetGeolocationPermissionContext() OVERRIDE; | 124 GetGeolocationPermissionContext() OVERRIDE; |
| 114 virtual quota::SpecialStoragePolicy* GetSpecialStoragePolicy() OVERRIDE; | 125 virtual quota::SpecialStoragePolicy* GetSpecialStoragePolicy() OVERRIDE; |
| 115 | 126 |
| 116 private: | 127 private: |
| 117 FRIEND_TEST_ALL_PREFIXES(OffTheRecordProfileImplTest, GetHostZoomMap); | 128 FRIEND_TEST_ALL_PREFIXES(OffTheRecordProfileImplTest, GetHostZoomMap); |
| 118 void InitHostZoomMap(); | 129 void InitHostZoomMap(); |
| 119 | 130 |
| 120 #if defined(OS_ANDROID) || defined(OS_IOS) | 131 #if defined(OS_ANDROID) || defined(OS_IOS) |
| (...skipping 20 matching lines...) Expand all Loading... |
| 141 base::FilePath last_selected_directory_; | 152 base::FilePath last_selected_directory_; |
| 142 | 153 |
| 143 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; | 154 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; |
| 144 | 155 |
| 145 scoped_ptr<content::HostZoomMap::Subscription> zoom_subscription_; | 156 scoped_ptr<content::HostZoomMap::Subscription> zoom_subscription_; |
| 146 | 157 |
| 147 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl); | 158 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl); |
| 148 }; | 159 }; |
| 149 | 160 |
| 150 #endif // CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ | 161 #endif // CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ |
| OLD | NEW |