| 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 // This class gathers state related to a single user profile. | 5 // This class gathers state related to a single user profile. |
| 6 | 6 |
| 7 #ifndef CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ | 7 #ifndef CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ |
| 8 #define CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ | 8 #define CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ |
| 9 #pragma once | 9 #pragma once |
| 10 | 10 |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 | 44 |
| 45 // Profile implementation. | 45 // Profile implementation. |
| 46 virtual std::string GetProfileName(); | 46 virtual std::string GetProfileName(); |
| 47 virtual ProfileId GetRuntimeId(); | 47 virtual ProfileId GetRuntimeId(); |
| 48 virtual FilePath GetPath(); | 48 virtual FilePath GetPath(); |
| 49 virtual bool IsOffTheRecord(); | 49 virtual bool IsOffTheRecord(); |
| 50 virtual Profile* GetOffTheRecordProfile(); | 50 virtual Profile* GetOffTheRecordProfile(); |
| 51 virtual void DestroyOffTheRecordProfile(); | 51 virtual void DestroyOffTheRecordProfile(); |
| 52 virtual bool HasOffTheRecordProfile(); | 52 virtual bool HasOffTheRecordProfile(); |
| 53 virtual Profile* GetOriginalProfile(); | 53 virtual Profile* GetOriginalProfile(); |
| 54 virtual bool SafeBrowsingEnabled(); |
| 54 virtual ChromeAppCacheService* GetAppCacheService(); | 55 virtual ChromeAppCacheService* GetAppCacheService(); |
| 55 virtual webkit_database::DatabaseTracker* GetDatabaseTracker(); | 56 virtual webkit_database::DatabaseTracker* GetDatabaseTracker(); |
| 56 virtual history::TopSites* GetTopSites(); | 57 virtual history::TopSites* GetTopSites(); |
| 57 virtual history::TopSites* GetTopSitesWithoutCreating(); | 58 virtual history::TopSites* GetTopSitesWithoutCreating(); |
| 58 virtual VisitedLinkMaster* GetVisitedLinkMaster(); | 59 virtual VisitedLinkMaster* GetVisitedLinkMaster(); |
| 59 virtual UserScriptMaster* GetUserScriptMaster(); | 60 virtual UserScriptMaster* GetUserScriptMaster(); |
| 60 virtual SSLHostState* GetSSLHostState(); | 61 virtual SSLHostState* GetSSLHostState(); |
| 61 virtual net::TransportSecurityState* GetTransportSecurityState(); | 62 virtual net::TransportSecurityState* GetTransportSecurityState(); |
| 62 virtual ExtensionService* GetExtensionService(); | 63 virtual ExtensionService* GetExtensionService(); |
| 63 virtual ExtensionDevToolsManager* GetExtensionDevToolsManager(); | 64 virtual ExtensionDevToolsManager* GetExtensionDevToolsManager(); |
| (...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 295 scoped_refptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; | 296 scoped_refptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; |
| 296 | 297 |
| 297 scoped_ptr<ChromeURLDataManager> chrome_url_data_manager_; | 298 scoped_ptr<ChromeURLDataManager> chrome_url_data_manager_; |
| 298 | 299 |
| 299 Profile::Delegate* delegate_; | 300 Profile::Delegate* delegate_; |
| 300 | 301 |
| 301 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); | 302 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); |
| 302 }; | 303 }; |
| 303 | 304 |
| 304 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ | 305 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ |
| OLD | NEW |