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

Unified Diff: content/public/browser/render_view_host.h

Issue 12210082: content: convert accessibility notifications to observer usage (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: windows 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/public/browser/render_view_host.h
diff --git a/content/public/browser/render_view_host.h b/content/public/browser/render_view_host.h
index 10f7724667ab8316ea671ee425ccbd0045af6f1d..1d759eb19bda80af6ab5795a709549ab528293fb 100644
--- a/content/public/browser/render_view_host.h
+++ b/content/public/browser/render_view_host.h
@@ -278,6 +278,14 @@ class CONTENT_EXPORT RenderViewHost : virtual public RenderWidgetHost {
// Informs the renderer process of a change in timezone.
virtual void NotifyTimezoneChange() = 0;
+ // Set accessibility callbacks.
+ virtual void SetAccessibilityLayoutCompleteCallbackForTesting(
+ const base::Closure& callback) = 0;
+ virtual void SetAccessibilityLoadCompleteCallbackForTesting(
+ const base::Closure& callback) = 0;
+ virtual void SetAccessibilityOtherCallbackForTesting(
+ const base::Closure& callback) = 0;
+
#if defined(OS_ANDROID)
// Selects and zooms to the find result nearest to the point (x,y)
// defined in find-in-page coordinates.

Powered by Google App Engine
This is Rietveld 408576698