| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #ifndef CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_MANAGER_WIN_H_ | 5 #ifndef CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_MANAGER_WIN_H_ |
| 6 #define CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_MANAGER_WIN_H_ | 6 #define CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_MANAGER_WIN_H_ |
| 7 | 7 |
| 8 #include <oleacc.h> | 8 #include <oleacc.h> |
| 9 | 9 |
| 10 #include "base/macros.h" |
| 10 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
| 11 #include "base/win/scoped_comptr.h" | 12 #include "base/win/scoped_comptr.h" |
| 12 #include "content/browser/accessibility/browser_accessibility_manager.h" | 13 #include "content/browser/accessibility/browser_accessibility_manager.h" |
| 13 | 14 |
| 14 namespace content { | 15 namespace content { |
| 15 class BrowserAccessibilityWin; | 16 class BrowserAccessibilityWin; |
| 16 | 17 |
| 17 // Manages a tree of BrowserAccessibilityWin objects. | 18 // Manages a tree of BrowserAccessibilityWin objects. |
| 18 class CONTENT_EXPORT BrowserAccessibilityManagerWin | 19 class CONTENT_EXPORT BrowserAccessibilityManagerWin |
| 19 : public BrowserAccessibilityManager { | 20 : public BrowserAccessibilityManager { |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 // A flag to keep track of if we're inside the OnWindowFocused call stack | 80 // A flag to keep track of if we're inside the OnWindowFocused call stack |
| 80 // so we don't keep calling it recursively. | 81 // so we don't keep calling it recursively. |
| 81 bool inside_on_window_focused_; | 82 bool inside_on_window_focused_; |
| 82 | 83 |
| 83 DISALLOW_COPY_AND_ASSIGN(BrowserAccessibilityManagerWin); | 84 DISALLOW_COPY_AND_ASSIGN(BrowserAccessibilityManagerWin); |
| 84 }; | 85 }; |
| 85 | 86 |
| 86 } // namespace content | 87 } // namespace content |
| 87 | 88 |
| 88 #endif // CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_MANAGER_WIN_H_ | 89 #endif // CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_MANAGER_WIN_H_ |
| OLD | NEW |