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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
82 | 82 |
83 virtual chrome_browser_net::Predictor* GetNetworkPredictor() OVERRIDE; | 83 virtual chrome_browser_net::Predictor* GetNetworkPredictor() OVERRIDE; |
84 virtual void ClearNetworkingHistorySince( | 84 virtual void ClearNetworkingHistorySince( |
85 base::Time time, | 85 base::Time time, |
86 const base::Closure& completion) OVERRIDE; | 86 const base::Closure& completion) OVERRIDE; |
87 virtual GURL GetHomePage() OVERRIDE; | 87 virtual GURL GetHomePage() OVERRIDE; |
88 | 88 |
89 // content::BrowserContext implementation: | 89 // content::BrowserContext implementation: |
90 virtual base::FilePath GetPath() OVERRIDE; | 90 virtual base::FilePath GetPath() OVERRIDE; |
91 virtual scoped_refptr<base::SequencedTaskRunner> GetIOTaskRunner() OVERRIDE; | 91 virtual scoped_refptr<base::SequencedTaskRunner> GetIOTaskRunner() OVERRIDE; |
| 92 virtual scoped_refptr<base::DeferredSequencedTaskRunner> |
| 93 GetBookmarksTaskRunner() OVERRIDE; |
92 virtual bool IsOffTheRecord() const OVERRIDE; | 94 virtual bool IsOffTheRecord() const OVERRIDE; |
93 virtual content::DownloadManagerDelegate* | 95 virtual content::DownloadManagerDelegate* |
94 GetDownloadManagerDelegate() OVERRIDE; | 96 GetDownloadManagerDelegate() OVERRIDE; |
95 virtual net::URLRequestContextGetter* GetRequestContext() OVERRIDE; | 97 virtual net::URLRequestContextGetter* GetRequestContext() OVERRIDE; |
96 virtual net::URLRequestContextGetter* GetRequestContextForRenderProcess( | 98 virtual net::URLRequestContextGetter* GetRequestContextForRenderProcess( |
97 int renderer_child_id) OVERRIDE; | 99 int renderer_child_id) OVERRIDE; |
98 virtual net::URLRequestContextGetter* GetMediaRequestContext() OVERRIDE; | 100 virtual net::URLRequestContextGetter* GetMediaRequestContext() OVERRIDE; |
99 virtual net::URLRequestContextGetter* GetMediaRequestContextForRenderProcess( | 101 virtual net::URLRequestContextGetter* GetMediaRequestContextForRenderProcess( |
100 int renderer_child_id) OVERRIDE; | 102 int renderer_child_id) OVERRIDE; |
101 virtual net::URLRequestContextGetter* | 103 virtual net::URLRequestContextGetter* |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
136 base::FilePath last_selected_directory_; | 138 base::FilePath last_selected_directory_; |
137 | 139 |
138 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; | 140 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; |
139 | 141 |
140 content::HostZoomMap::ZoomLevelChangedCallback zoom_callback_; | 142 content::HostZoomMap::ZoomLevelChangedCallback zoom_callback_; |
141 | 143 |
142 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl); | 144 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl); |
143 }; | 145 }; |
144 | 146 |
145 #endif // CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ | 147 #endif // CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ |
OLD | NEW |