OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_ANDROID_H_ | 5 #ifndef CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_MANAGER_ANDROID_H_ |
6 #define CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_MANAGER_ANDROID_H_ | 6 #define CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_MANAGER_ANDROID_H_ |
7 | 7 |
8 #include <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include "base/android/scoped_java_ref.h" | 10 #include "base/android/scoped_java_ref.h" |
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
217 protected: | 217 protected: |
218 // AXTreeDelegate overrides. | 218 // AXTreeDelegate overrides. |
219 void OnAtomicUpdateFinished( | 219 void OnAtomicUpdateFinished( |
220 ui::AXTree* tree, | 220 ui::AXTree* tree, |
221 bool root_changed, | 221 bool root_changed, |
222 const std::vector<ui::AXTreeDelegate::Change>& changes) override; | 222 const std::vector<ui::AXTreeDelegate::Change>& changes) override; |
223 | 223 |
224 bool UseRootScrollOffsetsWhenComputingBounds() override; | 224 bool UseRootScrollOffsetsWhenComputingBounds() override; |
225 | 225 |
226 private: | 226 private: |
| 227 BrowserAccessibilityAndroid* GetFromUniqueID(int32_t unique_id); |
| 228 |
227 // This gives BrowserAccessibilityManager::Create access to the class | 229 // This gives BrowserAccessibilityManager::Create access to the class |
228 // constructor. | 230 // constructor. |
229 friend class BrowserAccessibilityManager; | 231 friend class BrowserAccessibilityManager; |
230 | 232 |
231 // A weak reference to the Java BrowserAccessibilityManager object. | 233 // A weak reference to the Java BrowserAccessibilityManager object. |
232 // This avoids adding another reference to BrowserAccessibilityManager and | 234 // This avoids adding another reference to BrowserAccessibilityManager and |
233 // preventing garbage collection. | 235 // preventing garbage collection. |
234 // Premature garbage collection is prevented by the long-lived reference in | 236 // Premature garbage collection is prevented by the long-lived reference in |
235 // ContentViewCore. | 237 // ContentViewCore. |
236 JavaObjectWeakGlobalRef java_ref_; | 238 JavaObjectWeakGlobalRef java_ref_; |
237 | 239 |
238 // Handle a hover event from the renderer process. | 240 // Handle a hover event from the renderer process. |
239 void HandleHoverEvent(BrowserAccessibility* node); | 241 void HandleHoverEvent(BrowserAccessibility* node); |
240 | 242 |
241 // See docs for set_prune_tree_for_screen_reader, above. | 243 // See docs for set_prune_tree_for_screen_reader, above. |
242 bool prune_tree_for_screen_reader_; | 244 bool prune_tree_for_screen_reader_; |
243 | 245 |
244 DISALLOW_COPY_AND_ASSIGN(BrowserAccessibilityManagerAndroid); | 246 DISALLOW_COPY_AND_ASSIGN(BrowserAccessibilityManagerAndroid); |
245 }; | 247 }; |
246 | 248 |
247 bool RegisterBrowserAccessibilityManager(JNIEnv* env); | 249 bool RegisterBrowserAccessibilityManager(JNIEnv* env); |
248 | 250 |
249 } | 251 } |
250 | 252 |
251 #endif // CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_MANAGER_ANDROID_H
_ | 253 #endif // CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_MANAGER_ANDROID_H
_ |
OLD | NEW |