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

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

Issue 9232011: sync: Make ProfileSyncService a ProfileKeyedService. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 years, 11 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
« no previous file with comments | « no previous file | chrome/browser/profiles/off_the_record_profile_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 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
11 #include "chrome/browser/profiles/off_the_record_profile_io_data.h" 11 #include "chrome/browser/profiles/off_the_record_profile_io_data.h"
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 const std::string& app_id) OVERRIDE; 78 const std::string& app_id) OVERRIDE;
79 virtual const content::ResourceContext& GetResourceContext() OVERRIDE; 79 virtual const content::ResourceContext& GetResourceContext() OVERRIDE;
80 virtual net::SSLConfigService* GetSSLConfigService() OVERRIDE; 80 virtual net::SSLConfigService* GetSSLConfigService() OVERRIDE;
81 virtual HostContentSettingsMap* GetHostContentSettingsMap() OVERRIDE; 81 virtual HostContentSettingsMap* GetHostContentSettingsMap() OVERRIDE;
82 virtual HostZoomMap* GetHostZoomMap() OVERRIDE; 82 virtual HostZoomMap* GetHostZoomMap() OVERRIDE;
83 virtual GeolocationPermissionContext* 83 virtual GeolocationPermissionContext*
84 GetGeolocationPermissionContext() OVERRIDE; 84 GetGeolocationPermissionContext() OVERRIDE;
85 virtual SpeechInputPreferences* GetSpeechInputPreferences() OVERRIDE; 85 virtual SpeechInputPreferences* GetSpeechInputPreferences() OVERRIDE;
86 virtual UserStyleSheetWatcher* GetUserStyleSheetWatcher() OVERRIDE; 86 virtual UserStyleSheetWatcher* GetUserStyleSheetWatcher() OVERRIDE;
87 virtual FindBarState* GetFindBarState() OVERRIDE; 87 virtual FindBarState* GetFindBarState() OVERRIDE;
88 virtual bool HasProfileSyncService() const OVERRIDE; 88 virtual bool HasProfileSyncService() OVERRIDE;
89 virtual bool DidLastSessionExitCleanly() OVERRIDE; 89 virtual bool DidLastSessionExitCleanly() OVERRIDE;
90 virtual BookmarkModel* GetBookmarkModel() OVERRIDE; 90 virtual BookmarkModel* GetBookmarkModel() OVERRIDE;
91 virtual ProtocolHandlerRegistry* GetProtocolHandlerRegistry() OVERRIDE; 91 virtual ProtocolHandlerRegistry* GetProtocolHandlerRegistry() OVERRIDE;
92 virtual TokenService* GetTokenService() OVERRIDE; 92 virtual TokenService* GetTokenService() OVERRIDE;
93 virtual ProfileSyncService* GetProfileSyncService() OVERRIDE; 93 virtual ProfileSyncService* GetProfileSyncService() OVERRIDE;
94 virtual bool IsSameProfile(Profile* profile) OVERRIDE; 94 virtual bool IsSameProfile(Profile* profile) OVERRIDE;
95 virtual Time GetStartTime() const OVERRIDE; 95 virtual Time GetStartTime() const OVERRIDE;
96 virtual SpellCheckHost* GetSpellCheckHost() OVERRIDE; 96 virtual SpellCheckHost* GetSpellCheckHost() OVERRIDE;
97 virtual void ReinitializeSpellCheckHost(bool force) OVERRIDE; 97 virtual void ReinitializeSpellCheckHost(bool force) OVERRIDE;
98 virtual WebKitContext* GetWebKitContext() OVERRIDE; 98 virtual WebKitContext* GetWebKitContext() OVERRIDE;
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
188 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; 188 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_;
189 189
190 scoped_ptr<ChromeURLDataManager> chrome_url_data_manager_; 190 scoped_ptr<ChromeURLDataManager> chrome_url_data_manager_;
191 191
192 scoped_refptr<quota::QuotaManager> quota_manager_; 192 scoped_refptr<quota::QuotaManager> quota_manager_;
193 193
194 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl); 194 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl);
195 }; 195 };
196 196
197 #endif // CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ 197 #endif // CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/profiles/off_the_record_profile_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698