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

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

Issue 9939011: Add an accessibility mode for editable text fields only. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed comments and rebased. Created 8 years, 8 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_process_host_impl.h
diff --git a/content/browser/renderer_host/render_process_host_impl.h b/content/browser/renderer_host/render_process_host_impl.h
index e67224e1b6ced94af52d3169f896b32adf3d49ed..ae7e029a3f6cef2a54901e8fb5bbf26f74ea3038 100644
--- a/content/browser/renderer_host/render_process_host_impl.h
+++ b/content/browser/renderer_host/render_process_host_impl.h
@@ -58,7 +58,7 @@ class CONTENT_EXPORT RenderProcessHostImpl
// RenderProcessHost implementation (public portion).
virtual void EnableSendQueue() OVERRIDE;
- virtual bool Init(bool is_accessibility_enabled) OVERRIDE;
+ virtual bool Init() OVERRIDE;
virtual int GetNextRoutingID() OVERRIDE;
virtual void CancelResourceRequests(int render_widget_id) OVERRIDE;
virtual void CrossSiteSwapOutACK(const ViewMsg_SwapOut_Params& params)
@@ -220,9 +220,6 @@ class CONTENT_EXPORT RenderProcessHostImpl
// Used in single-process mode.
scoped_ptr<RendererMainThread> in_process_renderer_;
- // True if this prcoess should have accessibility enabled;
- bool accessibility_enabled_;
-
// True after Init() has been called. We can't just check channel_ because we
// also reset that in the case of process termination.
bool is_initialized_;

Powered by Google App Engine
This is Rietveld 408576698