| 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 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 virtual net::URLRequestContextGetter* GetMediaRequestContextForRenderProcess( | 98 virtual net::URLRequestContextGetter* GetMediaRequestContextForRenderProcess( |
| 99 int renderer_child_id) OVERRIDE; | 99 int renderer_child_id) OVERRIDE; |
| 100 virtual net::URLRequestContextGetter* | 100 virtual net::URLRequestContextGetter* |
| 101 GetMediaRequestContextForStoragePartition( | 101 GetMediaRequestContextForStoragePartition( |
| 102 const base::FilePath& partition_path, | 102 const base::FilePath& partition_path, |
| 103 bool in_memory) OVERRIDE; | 103 bool in_memory) OVERRIDE; |
| 104 virtual content::ResourceContext* GetResourceContext() OVERRIDE; | 104 virtual content::ResourceContext* GetResourceContext() OVERRIDE; |
| 105 virtual content::BrowserPluginGuestManager* GetGuestManager() OVERRIDE; | 105 virtual content::BrowserPluginGuestManager* GetGuestManager() OVERRIDE; |
| 106 virtual quota::SpecialStoragePolicy* GetSpecialStoragePolicy() OVERRIDE; | 106 virtual quota::SpecialStoragePolicy* GetSpecialStoragePolicy() OVERRIDE; |
| 107 virtual content::PushMessagingService* GetPushMessagingService() OVERRIDE; | 107 virtual content::PushMessagingService* GetPushMessagingService() OVERRIDE; |
| 108 virtual content::WakeLockPermissionContext* |
| 109 GetWakeLockPermissionContext() OVERRIDE; |
| 108 | 110 |
| 109 private: | 111 private: |
| 110 FRIEND_TEST_ALL_PREFIXES(OffTheRecordProfileImplTest, GetHostZoomMap); | 112 FRIEND_TEST_ALL_PREFIXES(OffTheRecordProfileImplTest, GetHostZoomMap); |
| 111 void InitIoData(); | 113 void InitIoData(); |
| 112 void InitHostZoomMap(); | 114 void InitHostZoomMap(); |
| 113 | 115 |
| 114 #if defined(OS_ANDROID) || defined(OS_IOS) | 116 #if defined(OS_ANDROID) || defined(OS_IOS) |
| 115 void UseSystemProxy(); | 117 void UseSystemProxy(); |
| 116 #endif // defined(OS_ANDROID) || defined(OS_IOS) | 118 #endif // defined(OS_ANDROID) || defined(OS_IOS) |
| 117 | 119 |
| (...skipping 17 matching lines...) Expand all Loading... |
| 135 base::FilePath last_selected_directory_; | 137 base::FilePath last_selected_directory_; |
| 136 | 138 |
| 137 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; | 139 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; |
| 138 | 140 |
| 139 scoped_ptr<content::HostZoomMap::Subscription> zoom_subscription_; | 141 scoped_ptr<content::HostZoomMap::Subscription> zoom_subscription_; |
| 140 | 142 |
| 141 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl); | 143 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl); |
| 142 }; | 144 }; |
| 143 | 145 |
| 144 #endif // CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ | 146 #endif // CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ |
| OLD | NEW |