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