| 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 <memory> |
| 11 |
| 10 #include "base/macros.h" | 12 #include "base/macros.h" |
| 11 #include "base/memory/scoped_ptr.h" | |
| 12 #include "base/win/scoped_comptr.h" | 13 #include "base/win/scoped_comptr.h" |
| 13 #include "content/browser/accessibility/browser_accessibility_manager.h" | 14 #include "content/browser/accessibility/browser_accessibility_manager.h" |
| 14 #include "ui/accessibility/platform/ax_platform_node_win.h" | 15 #include "ui/accessibility/platform/ax_platform_node_win.h" |
| 15 | 16 |
| 16 namespace content { | 17 namespace content { |
| 17 class BrowserAccessibilityWin; | 18 class BrowserAccessibilityWin; |
| 18 | 19 |
| 19 // Manages a tree of BrowserAccessibilityWin objects. | 20 // Manages a tree of BrowserAccessibilityWin objects. |
| 20 class CONTENT_EXPORT BrowserAccessibilityManagerWin | 21 class CONTENT_EXPORT BrowserAccessibilityManagerWin |
| 21 : public BrowserAccessibilityManager, | 22 : public BrowserAccessibilityManager, |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 // post a notification directly on it when it reaches its destination. | 75 // post a notification directly on it when it reaches its destination. |
| 75 // TODO(dmazzoni): remove once http://crbug.com/113483 is fixed. | 76 // TODO(dmazzoni): remove once http://crbug.com/113483 is fixed. |
| 76 BrowserAccessibilityWin* tracked_scroll_object_; | 77 BrowserAccessibilityWin* tracked_scroll_object_; |
| 77 | 78 |
| 78 DISALLOW_COPY_AND_ASSIGN(BrowserAccessibilityManagerWin); | 79 DISALLOW_COPY_AND_ASSIGN(BrowserAccessibilityManagerWin); |
| 79 }; | 80 }; |
| 80 | 81 |
| 81 } // namespace content | 82 } // namespace content |
| 82 | 83 |
| 83 #endif // CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_MANAGER_WIN_H_ | 84 #endif // CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_MANAGER_WIN_H_ |
| OLD | NEW |