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

Unified Diff: chrome/renderer/render_view.h

Issue 3117036: Update browser cache of accessibility tree on renderer sub-tree changes.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Updating from comments. Created 10 years, 4 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
« no previous file with comments | « chrome/common/render_messages_internal.h ('k') | chrome/renderer/render_view.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/render_view.h
===================================================================
--- chrome/renderer/render_view.h (revision 57122)
+++ chrome/renderer/render_view.h (working copy)
@@ -396,6 +396,8 @@
const WebKit::WebAccessibilityObject& acc_obj);
virtual void didChangeAccessibilityObjectState(
const WebKit::WebAccessibilityObject& acc_obj);
+ virtual void didChangeAccessibilityObjectChildren(
+ const WebKit::WebAccessibilityObject& acc_obj);
virtual void didUpdateInspectorSetting(const WebKit::WebString& key,
const WebKit::WebString& value);
virtual void queryAutofillSuggestions(const WebKit::WebNode& node,
@@ -705,6 +707,7 @@
// render_messages_internal.h for the message that the function is handling.
void OnAccessibilityDoDefaultAction(int acc_obj_id);
+ void OnAccessibilityObjectChildrenChangeAck();
void OnAllowBindings(int enabled_bindings_flags);
void OnAddMessageToConsole(const string16& frame_xpath,
const string16& message,
@@ -1237,6 +1240,8 @@
// maintains the cache and other features of the accessibility tree.
scoped_ptr<WebKit::WebAccessibilityCache> accessibility_;
+ std::vector<webkit_glue::WebAccessibility> accessibility_changes_;
+
// The speech dispatcher attached to this view, lazily initialized.
scoped_ptr<SpeechInputDispatcher> speech_input_dispatcher_;
« no previous file with comments | « chrome/common/render_messages_internal.h ('k') | chrome/renderer/render_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698