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/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
73 | 73 |
74 // Track the most recent object that has been asked to scroll and | 74 // Track the most recent object that has been asked to scroll and |
75 // post a notification directly on it when it reaches its destination. | 75 // post a notification directly on it when it reaches its destination. |
76 // TODO(dmazzoni): remove once http://crbug.com/113483 is fixed. | 76 // TODO(dmazzoni): remove once http://crbug.com/113483 is fixed. |
77 BrowserAccessibilityWin* tracked_scroll_object_; | 77 BrowserAccessibilityWin* tracked_scroll_object_; |
78 | 78 |
79 // A mapping from the Windows-specific unique IDs (unique within the | 79 // A mapping from the Windows-specific unique IDs (unique within the |
80 // browser process) to renderer ids within this page. | 80 // browser process) to renderer ids within this page. |
81 base::hash_map<long, int32> unique_id_to_renderer_id_map_; | 81 base::hash_map<long, int32> unique_id_to_renderer_id_map_; |
82 | 82 |
83 bool is_chrome_frame_; | |
84 | |
85 // Owned by its parent; OnAccessibleHwndDeleted gets called upon deletion. | 83 // Owned by its parent; OnAccessibleHwndDeleted gets called upon deletion. |
86 AccessibleHWND* accessible_hwnd_; | 84 AccessibleHWND* accessible_hwnd_; |
87 | 85 |
88 DISALLOW_COPY_AND_ASSIGN(BrowserAccessibilityManagerWin); | 86 DISALLOW_COPY_AND_ASSIGN(BrowserAccessibilityManagerWin); |
89 }; | 87 }; |
90 | 88 |
91 } // namespace content | 89 } // namespace content |
92 | 90 |
93 #endif // CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_MANAGER_WIN_H_ | 91 #endif // CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_MANAGER_WIN_H_ |
OLD | NEW |