| 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 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 scoped_refptr<base::SequencedTaskRunner> GetIOTaskRunner() override; | 98 scoped_refptr<base::SequencedTaskRunner> GetIOTaskRunner() override; |
| 99 bool IsOffTheRecord() const override; | 99 bool IsOffTheRecord() const override; |
| 100 content::DownloadManagerDelegate* GetDownloadManagerDelegate() override; | 100 content::DownloadManagerDelegate* GetDownloadManagerDelegate() override; |
| 101 content::ResourceContext* GetResourceContext() override; | 101 content::ResourceContext* GetResourceContext() override; |
| 102 content::BrowserPluginGuestManager* GetGuestManager() override; | 102 content::BrowserPluginGuestManager* GetGuestManager() override; |
| 103 storage::SpecialStoragePolicy* GetSpecialStoragePolicy() override; | 103 storage::SpecialStoragePolicy* GetSpecialStoragePolicy() override; |
| 104 content::PushMessagingService* GetPushMessagingService() override; | 104 content::PushMessagingService* GetPushMessagingService() override; |
| 105 content::SSLHostStateDelegate* GetSSLHostStateDelegate() override; | 105 content::SSLHostStateDelegate* GetSSLHostStateDelegate() override; |
| 106 content::PermissionManager* GetPermissionManager() override; | 106 content::PermissionManager* GetPermissionManager() override; |
| 107 content::BackgroundSyncController* GetBackgroundSyncController() override; | 107 content::BackgroundSyncController* GetBackgroundSyncController() override; |
| 108 content::BrowsingDataRemoverDelegate* GetBrowsingDataRemoverDelegate() |
| 109 override; |
| 108 | 110 |
| 109 private: | 111 private: |
| 110 void InitIoData(); | 112 void InitIoData(); |
| 111 | 113 |
| 112 // Allows a profile to track changes in zoom levels in its parent profile. | 114 // Allows a profile to track changes in zoom levels in its parent profile. |
| 113 void TrackZoomLevelsFromParent(); | 115 void TrackZoomLevelsFromParent(); |
| 114 | 116 |
| 115 #if defined(OS_ANDROID) | 117 #if defined(OS_ANDROID) |
| 116 void UseSystemProxy(); | 118 void UseSystemProxy(); |
| 117 #endif // defined(OS_ANDROID) | 119 #endif // defined(OS_ANDROID) |
| (...skipping 19 matching lines...) Expand all Loading... |
| 137 Time start_time_; | 139 Time start_time_; |
| 138 | 140 |
| 139 base::FilePath last_selected_directory_; | 141 base::FilePath last_selected_directory_; |
| 140 | 142 |
| 141 std::unique_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; | 143 std::unique_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; |
| 142 | 144 |
| 143 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl); | 145 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl); |
| 144 }; | 146 }; |
| 145 | 147 |
| 146 #endif // CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ | 148 #endif // CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ |
| OLD | NEW |