Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(280)

Side by Side Diff: chrome/browser/profiles/off_the_record_profile_impl.h

Issue 9834056: Moved WebDataService to ProfileKeyedService (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: removed unchanged file Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 #pragma once 7 #pragma once
8 8
9 #include <string> 9 #include <string>
10 10
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 virtual ExtensionEventRouter* GetExtensionEventRouter() OVERRIDE; 48 virtual ExtensionEventRouter* GetExtensionEventRouter() OVERRIDE;
49 virtual ExtensionSpecialStoragePolicy* 49 virtual ExtensionSpecialStoragePolicy*
50 GetExtensionSpecialStoragePolicy() OVERRIDE; 50 GetExtensionSpecialStoragePolicy() OVERRIDE;
51 virtual LazyBackgroundTaskQueue* GetLazyBackgroundTaskQueue() OVERRIDE; 51 virtual LazyBackgroundTaskQueue* GetLazyBackgroundTaskQueue() OVERRIDE;
52 virtual GAIAInfoUpdateService* GetGAIAInfoUpdateService() OVERRIDE; 52 virtual GAIAInfoUpdateService* GetGAIAInfoUpdateService() OVERRIDE;
53 virtual HistoryService* GetHistoryService(ServiceAccessType sat) OVERRIDE; 53 virtual HistoryService* GetHistoryService(ServiceAccessType sat) OVERRIDE;
54 virtual HistoryService* GetHistoryServiceWithoutCreating() OVERRIDE; 54 virtual HistoryService* GetHistoryServiceWithoutCreating() OVERRIDE;
55 virtual FaviconService* GetFaviconService(ServiceAccessType sat) OVERRIDE; 55 virtual FaviconService* GetFaviconService(ServiceAccessType sat) OVERRIDE;
56 virtual AutocompleteClassifier* GetAutocompleteClassifier() OVERRIDE; 56 virtual AutocompleteClassifier* GetAutocompleteClassifier() OVERRIDE;
57 virtual history::ShortcutsBackend* GetShortcutsBackend() OVERRIDE; 57 virtual history::ShortcutsBackend* GetShortcutsBackend() OVERRIDE;
58 virtual WebDataService* GetWebDataService(ServiceAccessType sat) OVERRIDE;
59 virtual WebDataService* GetWebDataServiceWithoutCreating() OVERRIDE;
60 virtual PrefService* GetPrefs() OVERRIDE; 58 virtual PrefService* GetPrefs() OVERRIDE;
61 virtual PrefService* GetOffTheRecordPrefs() OVERRIDE; 59 virtual PrefService* GetOffTheRecordPrefs() OVERRIDE;
62 virtual TemplateURLFetcher* GetTemplateURLFetcher() OVERRIDE; 60 virtual TemplateURLFetcher* GetTemplateURLFetcher() OVERRIDE;
63 virtual net::URLRequestContextGetter* 61 virtual net::URLRequestContextGetter*
64 GetRequestContextForExtensions() OVERRIDE; 62 GetRequestContextForExtensions() OVERRIDE;
65 virtual net::URLRequestContextGetter* GetRequestContextForIsolatedApp( 63 virtual net::URLRequestContextGetter* GetRequestContextForIsolatedApp(
66 const std::string& app_id) OVERRIDE; 64 const std::string& app_id) OVERRIDE;
67 virtual net::SSLConfigService* GetSSLConfigService() OVERRIDE; 65 virtual net::SSLConfigService* GetSSLConfigService() OVERRIDE;
68 virtual HostContentSettingsMap* GetHostContentSettingsMap() OVERRIDE; 66 virtual HostContentSettingsMap* GetHostContentSettingsMap() OVERRIDE;
69 virtual UserStyleSheetWatcher* GetUserStyleSheetWatcher() OVERRIDE; 67 virtual UserStyleSheetWatcher* GetUserStyleSheetWatcher() OVERRIDE;
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
151 FilePath last_selected_directory_; 149 FilePath last_selected_directory_;
152 150
153 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; 151 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_;
154 152
155 scoped_ptr<ChromeURLDataManager> chrome_url_data_manager_; 153 scoped_ptr<ChromeURLDataManager> chrome_url_data_manager_;
156 154
157 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl); 155 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl);
158 }; 156 };
159 157
160 #endif // CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ 158 #endif // CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698