| 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::SSLHostStateDecisions* GetSSLHostStateDecisions() OVERRIDE; |
| 108 | 109 |
| 109 private: | 110 private: |
| 110 FRIEND_TEST_ALL_PREFIXES(OffTheRecordProfileImplTest, GetHostZoomMap); | 111 FRIEND_TEST_ALL_PREFIXES(OffTheRecordProfileImplTest, GetHostZoomMap); |
| 111 void InitIoData(); | 112 void InitIoData(); |
| 112 void InitHostZoomMap(); | 113 void InitHostZoomMap(); |
| 113 | 114 |
| 114 #if defined(OS_ANDROID) || defined(OS_IOS) | 115 #if defined(OS_ANDROID) || defined(OS_IOS) |
| 115 void UseSystemProxy(); | 116 void UseSystemProxy(); |
| 116 #endif // defined(OS_ANDROID) || defined(OS_IOS) | 117 #endif // defined(OS_ANDROID) || defined(OS_IOS) |
| 117 | 118 |
| (...skipping 17 matching lines...) Expand all Loading... |
| 135 base::FilePath last_selected_directory_; | 136 base::FilePath last_selected_directory_; |
| 136 | 137 |
| 137 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; | 138 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; |
| 138 | 139 |
| 139 scoped_ptr<content::HostZoomMap::Subscription> zoom_subscription_; | 140 scoped_ptr<content::HostZoomMap::Subscription> zoom_subscription_; |
| 140 | 141 |
| 141 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl); | 142 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl); |
| 142 }; | 143 }; |
| 143 | 144 |
| 144 #endif // CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ | 145 #endif // CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ |
| OLD | NEW |