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_PROFILE_H_ | 7 #ifndef CHROME_BROWSER_PROFILES_PROFILE_H_ |
8 #define CHROME_BROWSER_PROFILE_H_ | 8 #define CHROME_BROWSER_PROFILES_PROFILE_H_ |
9 #pragma once | 9 #pragma once |
10 | 10 |
11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
12 #include "base/logging.h" | 12 #include "base/logging.h" |
13 | 13 |
14 namespace base { | 14 namespace base { |
15 class Time; | 15 class Time; |
16 } | 16 } |
17 | 17 |
18 #if defined(OS_CHROMEOS) | 18 #if defined(OS_CHROMEOS) |
(...skipping 520 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
539 private: | 539 private: |
540 bool restored_last_session_; | 540 bool restored_last_session_; |
541 | 541 |
542 // Accessibility events will only be propagated when the pause | 542 // Accessibility events will only be propagated when the pause |
543 // level is zero. PauseAccessibilityEvents and ResumeAccessibilityEvents | 543 // level is zero. PauseAccessibilityEvents and ResumeAccessibilityEvents |
544 // increment and decrement the level, respectively, rather than set it to | 544 // increment and decrement the level, respectively, rather than set it to |
545 // true or false, so that calls can be nested. | 545 // true or false, so that calls can be nested. |
546 int accessibility_pause_level_; | 546 int accessibility_pause_level_; |
547 }; | 547 }; |
548 | 548 |
549 #endif // CHROME_BROWSER_PROFILE_H_ | 549 #endif // CHROME_BROWSER_PROFILES_PROFILE_H_ |
OLD | NEW |