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_H_ | 5 #ifndef CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_MANAGER_H_ |
6 #define CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_MANAGER_H_ | 6 #define CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_MANAGER_H_ |
7 #pragma once | |
8 | 7 |
9 #include <vector> | 8 #include <vector> |
10 | 9 |
11 #include "base/hash_tables.h" | 10 #include "base/hash_tables.h" |
12 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
13 #include "build/build_config.h" | 12 #include "build/build_config.h" |
14 #include "content/common/accessibility_node_data.h" | 13 #include "content/common/accessibility_node_data.h" |
15 #include "content/common/content_export.h" | 14 #include "content/common/content_export.h" |
16 #include "ui/gfx/native_widget_types.h" | 15 #include "ui/gfx/native_widget_types.h" |
17 | 16 |
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
183 // we use internally here. | 182 // we use internally here. |
184 base::hash_map<int32, int32> renderer_id_to_child_id_map_; | 183 base::hash_map<int32, int32> renderer_id_to_child_id_map_; |
185 | 184 |
186 // A mapping from child IDs to BrowserAccessibility objects. | 185 // A mapping from child IDs to BrowserAccessibility objects. |
187 base::hash_map<int32, BrowserAccessibility*> child_id_map_; | 186 base::hash_map<int32, BrowserAccessibility*> child_id_map_; |
188 | 187 |
189 DISALLOW_COPY_AND_ASSIGN(BrowserAccessibilityManager); | 188 DISALLOW_COPY_AND_ASSIGN(BrowserAccessibilityManager); |
190 }; | 189 }; |
191 | 190 |
192 #endif // CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_MANAGER_H_ | 191 #endif // CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_MANAGER_H_ |
OLD | NEW |