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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
96 int renderer_child_id) OVERRIDE; | 96 int renderer_child_id) OVERRIDE; |
97 virtual net::URLRequestContextGetter* GetMediaRequestContext() OVERRIDE; | 97 virtual net::URLRequestContextGetter* GetMediaRequestContext() OVERRIDE; |
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 storage::SpecialStoragePolicy* GetSpecialStoragePolicy() OVERRIDE; |
107 virtual content::PushMessagingService* GetPushMessagingService() OVERRIDE; | 107 virtual content::PushMessagingService* GetPushMessagingService() OVERRIDE; |
108 virtual content::SSLHostStateDelegate* GetSSLHostStateDelegate() OVERRIDE; | 108 virtual content::SSLHostStateDelegate* GetSSLHostStateDelegate() OVERRIDE; |
109 | 109 |
110 private: | 110 private: |
111 FRIEND_TEST_ALL_PREFIXES(OffTheRecordProfileImplTest, GetHostZoomMap); | 111 FRIEND_TEST_ALL_PREFIXES(OffTheRecordProfileImplTest, GetHostZoomMap); |
112 void InitIoData(); | 112 void InitIoData(); |
113 void InitHostZoomMap(); | 113 void InitHostZoomMap(); |
114 | 114 |
115 #if defined(OS_ANDROID) || defined(OS_IOS) | 115 #if defined(OS_ANDROID) || defined(OS_IOS) |
116 void UseSystemProxy(); | 116 void UseSystemProxy(); |
(...skipping 19 matching lines...) Expand all Loading... |
136 base::FilePath last_selected_directory_; | 136 base::FilePath last_selected_directory_; |
137 | 137 |
138 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; | 138 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; |
139 | 139 |
140 scoped_ptr<content::HostZoomMap::Subscription> zoom_subscription_; | 140 scoped_ptr<content::HostZoomMap::Subscription> zoom_subscription_; |
141 | 141 |
142 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl); | 142 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl); |
143 }; | 143 }; |
144 | 144 |
145 #endif // CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ | 145 #endif // CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ |
OLD | NEW |