Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 48 class ChromeAppCacheService; | 48 class ChromeAppCacheService; |
| 49 class ChromeBlobStorageContext; | 49 class ChromeBlobStorageContext; |
| 50 class ChromeURLRequestContextGetter; | 50 class ChromeURLRequestContextGetter; |
| 51 class CloudPrintProxyService; | 51 class CloudPrintProxyService; |
| 52 class DesktopNotificationService; | 52 class DesktopNotificationService; |
| 53 class DownloadManager; | 53 class DownloadManager; |
| 54 class Extension; | 54 class Extension; |
| 55 class ExtensionDevToolsManager; | 55 class ExtensionDevToolsManager; |
| 56 class ExtensionEventRouter; | 56 class ExtensionEventRouter; |
| 57 class ExtensionMessageService; | 57 class ExtensionMessageService; |
| 58 class ExtensionPrefStore; | |
|
battre (please use the other)
2010/12/08 12:24:15
used?
danno
2010/12/08 13:08:45
Doesn't look like this actually gets used in this
Mattias Nissler (ping if slow)
2010/12/09 10:20:20
Done.
| |
| 58 class ExtensionProcessManager; | 59 class ExtensionProcessManager; |
| 59 class ExtensionsService; | 60 class ExtensionsService; |
| 60 class FaviconService; | 61 class FaviconService; |
| 61 class FilePath; | 62 class FilePath; |
| 62 class BrowserFileSystemContext; | 63 class BrowserFileSystemContext; |
| 63 class FindBarState; | 64 class FindBarState; |
| 64 class GeolocationContentSettingsMap; | 65 class GeolocationContentSettingsMap; |
| 65 class GeolocationPermissionContext; | 66 class GeolocationPermissionContext; |
| 66 class HistoryService; | 67 class HistoryService; |
| 67 class HostContentSettingsMap; | 68 class HostContentSettingsMap; |
| (...skipping 472 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 540 bool restored_last_session_; | 541 bool restored_last_session_; |
| 541 | 542 |
| 542 // Accessibility events will only be propagated when the pause | 543 // Accessibility events will only be propagated when the pause |
| 543 // level is zero. PauseAccessibilityEvents and ResumeAccessibilityEvents | 544 // level is zero. PauseAccessibilityEvents and ResumeAccessibilityEvents |
| 544 // increment and decrement the level, respectively, rather than set it to | 545 // increment and decrement the level, respectively, rather than set it to |
| 545 // true or false, so that calls can be nested. | 546 // true or false, so that calls can be nested. |
| 546 int accessibility_pause_level_; | 547 int accessibility_pause_level_; |
| 547 }; | 548 }; |
| 548 | 549 |
| 549 #endif // CHROME_BROWSER_PROFILES_PROFILE_H_ | 550 #endif // CHROME_BROWSER_PROFILES_PROFILE_H_ |
| OLD | NEW |