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

Unified Diff: content/browser/renderer_host/render_view_host_impl.h

Issue 12210082: content: convert accessibility notifications to observer usage (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixes Created 7 years, 10 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/browser/renderer_host/render_view_host_impl.h
diff --git a/content/browser/renderer_host/render_view_host_impl.h b/content/browser/renderer_host/render_view_host_impl.h
index 7d57852228eed7aa35d9390d22bdea8f6a2efc11..b3fa7c46e63bf4fb517dc6bba9422476a2b64241 100644
--- a/content/browser/renderer_host/render_view_host_impl.h
+++ b/content/browser/renderer_host/render_view_host_impl.h
@@ -422,6 +422,12 @@ class CONTENT_EXPORT RenderViewHostImpl
return accessibility_tree_;
}
+ // Set accessibility callbacks (only for testing).
jam 2013/02/14 00:39:01 nit: (only for testing). is redundant given the me
Paweł Hajdan Jr. 2013/02/14 09:28:11 Done.
+ void SetAccessibilityLayoutCompleteCallbackForTesting(
+ const base::Closure& callback);
+ void SetAccessibilityLoadCompleteCallbackForTesting(
+ const base::Closure& callback);
+
bool is_waiting_for_unload_ack_for_testing() {
return is_waiting_for_unload_ack_;
}
@@ -652,6 +658,10 @@ class CONTENT_EXPORT RenderViewHostImpl
// callbacks.
std::map<int, JavascriptResultCallback> javascript_callbacks_;
+ // Accessibility callbacks.
+ base::Closure accessibility_layout_callback_;
+ base::Closure accessibility_load_callback_;
+
// True if the render view can be shut down suddenly.
bool sudden_termination_allowed_;

Powered by Google App Engine
This is Rietveld 408576698