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 #ifndef CHROME_BROWSER_BROWSER_ACCESSIBILITY_MANAGER_H_ | 5 #ifndef CHROME_BROWSER_BROWSER_ACCESSIBILITY_MANAGER_WIN_H_ |
6 #define CHROME_BROWSER_BROWSER_ACCESSIBILITY_MANAGER_H_ | 6 #define CHROME_BROWSER_BROWSER_ACCESSIBILITY_MANAGER_WIN_H_ |
7 | 7 |
8 #include <atlbase.h> | 8 #include <atlbase.h> |
9 #include <atlcom.h> | 9 #include <atlcom.h> |
10 #include <oleacc.h> | 10 #include <oleacc.h> |
11 | 11 |
12 #include <map> | 12 #include <map> |
13 | 13 |
14 #include "base/hash_tables.h" | 14 #include "base/hash_tables.h" |
15 #include "base/scoped_comptr_win.h" | 15 #include "base/scoped_comptr_win.h" |
16 #include "base/scoped_ptr.h" | 16 #include "base/scoped_ptr.h" |
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
110 base::hash_map<LONG, BrowserAccessibility*> child_id_map_; | 110 base::hash_map<LONG, BrowserAccessibility*> child_id_map_; |
111 | 111 |
112 // The next child ID to use; static so that they're global to the process. | 112 // The next child ID to use; static so that they're global to the process. |
113 // Screen readers cache these IDs to see if they've seen the same object | 113 // Screen readers cache these IDs to see if they've seen the same object |
114 // before so we should avoid reusing them within the same project. | 114 // before so we should avoid reusing them within the same project. |
115 static LONG next_child_id_; | 115 static LONG next_child_id_; |
116 | 116 |
117 DISALLOW_COPY_AND_ASSIGN(BrowserAccessibilityManager); | 117 DISALLOW_COPY_AND_ASSIGN(BrowserAccessibilityManager); |
118 }; | 118 }; |
119 | 119 |
120 #endif // CHROME_BROWSER_BROWSER_ACCESSIBILITY_MANAGER_H_ | 120 #endif // CHROME_BROWSER_BROWSER_ACCESSIBILITY_MANAGER_WIN_H_ |
OLD | NEW |