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_H_ | 7 #ifndef CHROME_BROWSER_PROFILES_PROFILE_H_ |
8 #define CHROME_BROWSER_PROFILES_PROFILE_H_ | 8 #define CHROME_BROWSER_PROFILES_PROFILE_H_ |
9 #pragma once | 9 #pragma once |
10 | 10 |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 class ChromeAppCacheService; | 56 class ChromeAppCacheService; |
57 class ChromeBlobStorageContext; | 57 class ChromeBlobStorageContext; |
58 class ChromeURLDataManager; | 58 class ChromeURLDataManager; |
59 class CloudPrintProxyService; | 59 class CloudPrintProxyService; |
60 class DesktopNotificationService; | 60 class DesktopNotificationService; |
61 class DownloadManager; | 61 class DownloadManager; |
62 class Extension; | 62 class Extension; |
63 class ExtensionDevToolsManager; | 63 class ExtensionDevToolsManager; |
64 class ExtensionEventRouter; | 64 class ExtensionEventRouter; |
65 class ExtensionInfoMap; | 65 class ExtensionInfoMap; |
66 class ExtensionIOEventRouter; | |
67 class ExtensionMessageService; | 66 class ExtensionMessageService; |
68 class ExtensionPrefValueMap; | 67 class ExtensionPrefValueMap; |
69 class ExtensionProcessManager; | 68 class ExtensionProcessManager; |
70 class ExtensionService; | 69 class ExtensionService; |
71 class FaviconService; | 70 class FaviconService; |
72 class FilePath; | 71 class FilePath; |
73 class FindBarState; | 72 class FindBarState; |
74 class GeolocationContentSettingsMap; | 73 class GeolocationContentSettingsMap; |
75 class GeolocationPermissionContext; | 74 class GeolocationPermissionContext; |
76 class HistoryService; | 75 class HistoryService; |
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
219 // profile. The instance is created at startup. | 218 // profile. The instance is created at startup. |
220 virtual ExtensionProcessManager* GetExtensionProcessManager() = 0; | 219 virtual ExtensionProcessManager* GetExtensionProcessManager() = 0; |
221 | 220 |
222 // Retrieves a pointer to the ExtensionMessageService associated with this | 221 // Retrieves a pointer to the ExtensionMessageService associated with this |
223 // profile. The instance is created at startup. | 222 // profile. The instance is created at startup. |
224 virtual ExtensionMessageService* GetExtensionMessageService() = 0; | 223 virtual ExtensionMessageService* GetExtensionMessageService() = 0; |
225 | 224 |
226 // Accessor. The instance is created at startup. | 225 // Accessor. The instance is created at startup. |
227 virtual ExtensionEventRouter* GetExtensionEventRouter() = 0; | 226 virtual ExtensionEventRouter* GetExtensionEventRouter() = 0; |
228 | 227 |
229 // Accessor. The instance is created at startup. | |
230 virtual ExtensionIOEventRouter* GetExtensionIOEventRouter() = 0; | |
231 | |
232 // Retrieves a pointer to the SSLHostState associated with this profile. | 228 // Retrieves a pointer to the SSLHostState associated with this profile. |
233 // The SSLHostState is lazily created the first time that this method is | 229 // The SSLHostState is lazily created the first time that this method is |
234 // called. | 230 // called. |
235 virtual SSLHostState* GetSSLHostState() = 0; | 231 virtual SSLHostState* GetSSLHostState() = 0; |
236 | 232 |
237 // Retrieves a pointer to the TransportSecurityState associated with | 233 // Retrieves a pointer to the TransportSecurityState associated with |
238 // this profile. The TransportSecurityState is lazily created the | 234 // this profile. The TransportSecurityState is lazily created the |
239 // first time that this method is called. | 235 // first time that this method is called. |
240 virtual net::TransportSecurityState* GetTransportSecurityState() = 0; | 236 virtual net::TransportSecurityState* GetTransportSecurityState() = 0; |
241 | 237 |
(...skipping 355 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
597 bool restored_last_session_; | 593 bool restored_last_session_; |
598 | 594 |
599 // Accessibility events will only be propagated when the pause | 595 // Accessibility events will only be propagated when the pause |
600 // level is zero. PauseAccessibilityEvents and ResumeAccessibilityEvents | 596 // level is zero. PauseAccessibilityEvents and ResumeAccessibilityEvents |
601 // increment and decrement the level, respectively, rather than set it to | 597 // increment and decrement the level, respectively, rather than set it to |
602 // true or false, so that calls can be nested. | 598 // true or false, so that calls can be nested. |
603 int accessibility_pause_level_; | 599 int accessibility_pause_level_; |
604 }; | 600 }; |
605 | 601 |
606 #endif // CHROME_BROWSER_PROFILES_PROFILE_H_ | 602 #endif // CHROME_BROWSER_PROFILES_PROFILE_H_ |
OLD | NEW |