| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 virtual AutocompleteClassifier* GetAutocompleteClassifier() OVERRIDE; | 60 virtual AutocompleteClassifier* GetAutocompleteClassifier() OVERRIDE; |
| 61 virtual history::ShortcutsBackend* GetShortcutsBackend() OVERRIDE; | 61 virtual history::ShortcutsBackend* GetShortcutsBackend() OVERRIDE; |
| 62 virtual WebDataService* GetWebDataService(ServiceAccessType sat) OVERRIDE; | 62 virtual WebDataService* GetWebDataService(ServiceAccessType sat) OVERRIDE; |
| 63 virtual WebDataService* GetWebDataServiceWithoutCreating() OVERRIDE; | 63 virtual WebDataService* GetWebDataServiceWithoutCreating() OVERRIDE; |
| 64 virtual PasswordStore* GetPasswordStore(ServiceAccessType sat) OVERRIDE; | 64 virtual PasswordStore* GetPasswordStore(ServiceAccessType sat) OVERRIDE; |
| 65 virtual PrefService* GetPrefs() OVERRIDE; | 65 virtual PrefService* GetPrefs() OVERRIDE; |
| 66 virtual PrefService* GetOffTheRecordPrefs() OVERRIDE; | 66 virtual PrefService* GetOffTheRecordPrefs() OVERRIDE; |
| 67 virtual TemplateURLFetcher* GetTemplateURLFetcher() OVERRIDE; | 67 virtual TemplateURLFetcher* GetTemplateURLFetcher() OVERRIDE; |
| 68 virtual DownloadManager* GetDownloadManager() OVERRIDE; | 68 virtual DownloadManager* GetDownloadManager() OVERRIDE; |
| 69 virtual bool HasCreatedDownloadManager() const OVERRIDE; | 69 virtual bool HasCreatedDownloadManager() const OVERRIDE; |
| 70 virtual PersonalDataManager* GetPersonalDataManager() OVERRIDE; | |
| 71 virtual fileapi::FileSystemContext* GetFileSystemContext() OVERRIDE; | 70 virtual fileapi::FileSystemContext* GetFileSystemContext() OVERRIDE; |
| 72 virtual net::URLRequestContextGetter* GetRequestContext() OVERRIDE; | 71 virtual net::URLRequestContextGetter* GetRequestContext() OVERRIDE; |
| 73 virtual quota::QuotaManager* GetQuotaManager() OVERRIDE; | 72 virtual quota::QuotaManager* GetQuotaManager() OVERRIDE; |
| 74 virtual net::URLRequestContextGetter* GetRequestContextForRenderProcess( | 73 virtual net::URLRequestContextGetter* GetRequestContextForRenderProcess( |
| 75 int renderer_child_id) OVERRIDE; | 74 int renderer_child_id) OVERRIDE; |
| 76 virtual net::URLRequestContextGetter* GetRequestContextForMedia() OVERRIDE; | 75 virtual net::URLRequestContextGetter* GetRequestContextForMedia() OVERRIDE; |
| 77 virtual net::URLRequestContextGetter* | 76 virtual net::URLRequestContextGetter* |
| 78 GetRequestContextForExtensions() OVERRIDE; | 77 GetRequestContextForExtensions() OVERRIDE; |
| 79 virtual net::URLRequestContextGetter* GetRequestContextForIsolatedApp( | 78 virtual net::URLRequestContextGetter* GetRequestContextForIsolatedApp( |
| 80 const std::string& app_id) OVERRIDE; | 79 const std::string& app_id) OVERRIDE; |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 198 scoped_refptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; | 197 scoped_refptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; |
| 199 | 198 |
| 200 scoped_ptr<ChromeURLDataManager> chrome_url_data_manager_; | 199 scoped_ptr<ChromeURLDataManager> chrome_url_data_manager_; |
| 201 | 200 |
| 202 scoped_refptr<quota::QuotaManager> quota_manager_; | 201 scoped_refptr<quota::QuotaManager> quota_manager_; |
| 203 | 202 |
| 204 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl); | 203 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl); |
| 205 }; | 204 }; |
| 206 | 205 |
| 207 #endif // CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ | 206 #endif // CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ |
| OLD | NEW |