| 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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 class FindBarState; | 65 class FindBarState; |
| 66 class GeolocationContentSettingsMap; | 66 class GeolocationContentSettingsMap; |
| 67 class GeolocationPermissionContext; | 67 class GeolocationPermissionContext; |
| 68 class HistoryService; | 68 class HistoryService; |
| 69 class HostContentSettingsMap; | 69 class HostContentSettingsMap; |
| 70 class HostZoomMap; | 70 class HostZoomMap; |
| 71 class NTPResourceCache; | 71 class NTPResourceCache; |
| 72 class NavigationController; | 72 class NavigationController; |
| 73 class PasswordStore; | 73 class PasswordStore; |
| 74 class PersonalDataManager; | 74 class PersonalDataManager; |
| 75 class PinnedTabService; |
| 75 class PrefProxyConfigTracker; | 76 class PrefProxyConfigTracker; |
| 76 class PrefService; | 77 class PrefService; |
| 77 class ProfileSyncFactory; | 78 class ProfileSyncFactory; |
| 78 class ProfileSyncService; | 79 class ProfileSyncService; |
| 79 class PromoCounter; | 80 class PromoCounter; |
| 80 class ProtocolHandlerRegistry; | 81 class ProtocolHandlerRegistry; |
| 81 class SQLitePersistentCookieStore; | 82 class SQLitePersistentCookieStore; |
| 82 class SSLConfigServiceManager; | 83 class SSLConfigServiceManager; |
| 83 class SSLHostState; | 84 class SSLHostState; |
| 84 class SessionService; | 85 class SessionService; |
| (...skipping 498 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 583 bool restored_last_session_; | 584 bool restored_last_session_; |
| 584 | 585 |
| 585 // Accessibility events will only be propagated when the pause | 586 // Accessibility events will only be propagated when the pause |
| 586 // level is zero. PauseAccessibilityEvents and ResumeAccessibilityEvents | 587 // level is zero. PauseAccessibilityEvents and ResumeAccessibilityEvents |
| 587 // increment and decrement the level, respectively, rather than set it to | 588 // increment and decrement the level, respectively, rather than set it to |
| 588 // true or false, so that calls can be nested. | 589 // true or false, so that calls can be nested. |
| 589 int accessibility_pause_level_; | 590 int accessibility_pause_level_; |
| 590 }; | 591 }; |
| 591 | 592 |
| 592 #endif // CHROME_BROWSER_PROFILES_PROFILE_H_ | 593 #endif // CHROME_BROWSER_PROFILES_PROFILE_H_ |
| OLD | NEW |