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

Unified Diff: content/renderer/accessibility/renderer_accessibility_complete.h

Issue 275503002: Ignore accessibility events fired on objects that aren't in the tree. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add Android suppression Created 6 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 side-by-side diff with in-line comments
Download patch
Index: content/renderer/accessibility/renderer_accessibility_complete.h
diff --git a/content/renderer/accessibility/renderer_accessibility_complete.h b/content/renderer/accessibility/renderer_accessibility_complete.h
index 227c72a4d709849dcc25d0ee63f14c87291f9621..b7e2b5b557a7cf9ee738d84c60db1255e9b0655c 100644
--- a/content/renderer/accessibility/renderer_accessibility_complete.h
+++ b/content/renderer/accessibility/renderer_accessibility_complete.h
@@ -72,16 +72,6 @@ class CONTENT_EXPORT RendererAccessibilityComplete
void OnSetTextSelection(int acc_obj_id, int start_offset, int end_offset);
void OnFatalError();
- // Checks if a Blink accessibility object is an editable text node.
- bool IsEditableText(const blink::WebAXObject& node);
-
- // Recursively explore the tree of Blink accessibility objects rooted
- // at |src|, and for each editable text node encountered, add a
- // corresponding WebAccessibility node as a child of |dst|.
- void RecursiveAddEditableTextNodesToTree(
- const blink::WebAXObject& src,
- ui::AXNodeData* dst);
-
// So we can queue up tasks to be executed later.
base::WeakPtrFactory<RendererAccessibilityComplete> weak_factory_;

Powered by Google App Engine
This is Rietveld 408576698