| 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/macros.h" | 10 #include "base/macros.h" |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 net::URLRequestContextGetter* GetMediaRequestContextForStoragePartition( | 102 net::URLRequestContextGetter* GetMediaRequestContextForStoragePartition( |
| 103 const base::FilePath& partition_path, | 103 const base::FilePath& partition_path, |
| 104 bool in_memory) override; | 104 bool in_memory) override; |
| 105 content::ResourceContext* GetResourceContext() override; | 105 content::ResourceContext* GetResourceContext() override; |
| 106 content::BrowserPluginGuestManager* GetGuestManager() override; | 106 content::BrowserPluginGuestManager* GetGuestManager() override; |
| 107 storage::SpecialStoragePolicy* GetSpecialStoragePolicy() override; | 107 storage::SpecialStoragePolicy* GetSpecialStoragePolicy() override; |
| 108 content::PushMessagingService* GetPushMessagingService() override; | 108 content::PushMessagingService* GetPushMessagingService() override; |
| 109 content::SSLHostStateDelegate* GetSSLHostStateDelegate() override; | 109 content::SSLHostStateDelegate* GetSSLHostStateDelegate() override; |
| 110 content::PermissionManager* GetPermissionManager() override; | 110 content::PermissionManager* GetPermissionManager() override; |
| 111 content::BackgroundSyncController* GetBackgroundSyncController() override; | 111 content::BackgroundSyncController* GetBackgroundSyncController() override; |
| 112 content::ChooserPermissionManager* GetChooserPermissionManager() override; |
| 112 | 113 |
| 113 private: | 114 private: |
| 114 void InitIoData(); | 115 void InitIoData(); |
| 115 | 116 |
| 116 // Allows a profile to track changes in zoom levels in its parent profile. | 117 // Allows a profile to track changes in zoom levels in its parent profile. |
| 117 void TrackZoomLevelsFromParent(); | 118 void TrackZoomLevelsFromParent(); |
| 118 | 119 |
| 119 #if defined(OS_ANDROID) || defined(OS_IOS) | 120 #if defined(OS_ANDROID) || defined(OS_IOS) |
| 120 void UseSystemProxy(); | 121 void UseSystemProxy(); |
| 121 #endif // defined(OS_ANDROID) || defined(OS_IOS) | 122 #endif // defined(OS_ANDROID) || defined(OS_IOS) |
| (...skipping 19 matching lines...) Expand all Loading... |
| 141 Time start_time_; | 142 Time start_time_; |
| 142 | 143 |
| 143 base::FilePath last_selected_directory_; | 144 base::FilePath last_selected_directory_; |
| 144 | 145 |
| 145 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; | 146 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; |
| 146 | 147 |
| 147 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl); | 148 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl); |
| 148 }; | 149 }; |
| 149 | 150 |
| 150 #endif // CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ | 151 #endif // CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ |
| OLD | NEW |