Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(160)

Side by Side Diff: content/browser/accessibility/browser_accessibility_manager_android.h

Issue 1925473002: Add verbose logging for native accessibility events. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@load_complete
Patch Set: address all feedback Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 // This can be turned off to generate a tree that more accurately reflects 70 // This can be turned off to generate a tree that more accurately reflects
71 // the DOM and includes style changes within these nodes. 71 // the DOM and includes style changes within these nodes.
72 void set_prune_tree_for_screen_reader(bool prune) { 72 void set_prune_tree_for_screen_reader(bool prune) {
73 prune_tree_for_screen_reader_ = prune; 73 prune_tree_for_screen_reader_ = prune;
74 } 74 }
75 bool prune_tree_for_screen_reader() { return prune_tree_for_screen_reader_; } 75 bool prune_tree_for_screen_reader() { return prune_tree_for_screen_reader_; }
76 76
77 bool ShouldExposePasswordText(); 77 bool ShouldExposePasswordText();
78 78
79 // BrowserAccessibilityManager overrides. 79 // BrowserAccessibilityManager overrides.
80 void NotifyAccessibilityEvent(ui::AXEvent event_type, 80 void NotifyAccessibilityEvent(
81 BrowserAccessibility* node) override; 81 BrowserAccessibilityEvent::Source source,
82 ui::AXEvent event_type,
83 BrowserAccessibility* node) override;
82 void SendLocationChangeEvents( 84 void SendLocationChangeEvents(
83 const std::vector<AccessibilityHostMsg_LocationChangeParams>& params) 85 const std::vector<AccessibilityHostMsg_LocationChangeParams>& params)
84 override; 86 override;
85 87
86 // -------------------------------------------------------------------------- 88 // --------------------------------------------------------------------------
87 // Methods called from Java via JNI 89 // Methods called from Java via JNI
88 // -------------------------------------------------------------------------- 90 // --------------------------------------------------------------------------
89 91
90 // Global methods. 92 // Global methods.
91 base::android::ScopedJavaLocalRef<jstring> GetSupportedHtmlElementTypes( 93 base::android::ScopedJavaLocalRef<jstring> GetSupportedHtmlElementTypes(
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after
254 bool prune_tree_for_screen_reader_; 256 bool prune_tree_for_screen_reader_;
255 257
256 DISALLOW_COPY_AND_ASSIGN(BrowserAccessibilityManagerAndroid); 258 DISALLOW_COPY_AND_ASSIGN(BrowserAccessibilityManagerAndroid);
257 }; 259 };
258 260
259 bool RegisterBrowserAccessibilityManager(JNIEnv* env); 261 bool RegisterBrowserAccessibilityManager(JNIEnv* env);
260 262
261 } 263 }
262 264
263 #endif // CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_MANAGER_ANDROID_H _ 265 #endif // CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_MANAGER_ANDROID_H _
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698