| 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 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 virtual UserStyleSheetWatcher* GetUserStyleSheetWatcher() OVERRIDE; | 86 virtual UserStyleSheetWatcher* GetUserStyleSheetWatcher() OVERRIDE; |
| 87 virtual FindBarState* GetFindBarState() OVERRIDE; | 87 virtual FindBarState* GetFindBarState() OVERRIDE; |
| 88 virtual bool HasProfileSyncService() 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; | |
| 97 virtual void ReinitializeSpellCheckHost(bool force) OVERRIDE; | |
| 98 virtual WebKitContext* GetWebKitContext() OVERRIDE; | 96 virtual WebKitContext* GetWebKitContext() OVERRIDE; |
| 99 virtual history::TopSites* GetTopSitesWithoutCreating() OVERRIDE; | 97 virtual history::TopSites* GetTopSitesWithoutCreating() OVERRIDE; |
| 100 virtual history::TopSites* GetTopSites() OVERRIDE; | 98 virtual history::TopSites* GetTopSites() OVERRIDE; |
| 101 virtual void MarkAsCleanShutdown() OVERRIDE; | 99 virtual void MarkAsCleanShutdown() OVERRIDE; |
| 102 virtual void InitExtensions(bool extensions_enabled) OVERRIDE; | 100 virtual void InitExtensions(bool extensions_enabled) OVERRIDE; |
| 103 virtual void InitPromoResources() OVERRIDE; | 101 virtual void InitPromoResources() OVERRIDE; |
| 104 virtual void InitRegisteredProtocolHandlers() OVERRIDE; | 102 virtual void InitRegisteredProtocolHandlers() OVERRIDE; |
| 105 virtual FilePath last_selected_directory() OVERRIDE; | 103 virtual FilePath last_selected_directory() OVERRIDE; |
| 106 virtual void set_last_selected_directory(const FilePath& path) OVERRIDE; | 104 virtual void set_last_selected_directory(const FilePath& path) OVERRIDE; |
| 107 | 105 |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 188 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; | 186 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; |
| 189 | 187 |
| 190 scoped_ptr<ChromeURLDataManager> chrome_url_data_manager_; | 188 scoped_ptr<ChromeURLDataManager> chrome_url_data_manager_; |
| 191 | 189 |
| 192 scoped_refptr<quota::QuotaManager> quota_manager_; | 190 scoped_refptr<quota::QuotaManager> quota_manager_; |
| 193 | 191 |
| 194 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl); | 192 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl); |
| 195 }; | 193 }; |
| 196 | 194 |
| 197 #endif // CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ | 195 #endif // CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ |
| OLD | NEW |