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

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

Issue 790413002: Focus following for the non-editable controls on web page in magnifier mode. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix a nit. Created 6 years 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 b3308d18aaea41cc825874e374c0d571194854fb..22c9f08b517744bc8eca328d1ad677e8e8b52305 100644
--- a/content/public/browser/render_view_host.h
+++ b/content/public/browser/render_view_host.h
@@ -46,6 +46,11 @@ struct DropData;
struct FileChooserFileInfo;
struct WebPreferences;
+struct FocusedNodeDetails {
+ bool is_editable_node;
+ gfx::Rect node_bounds_in_screen;
+};
+
sadrul 2014/12/12 17:13:49 This doesn't look like the right place for this.
jennyz 2014/12/12 23:14:45 Yes, I feel a little awkward too, do you have any
sadrul 2014/12/15 18:37:16 I can't think of a better place either. This might
jennyz 2014/12/15 23:24:55 Moved to content/public/browser/focused_node_detai
// A RenderViewHost is responsible for creating and talking to a RenderView
// object in a child process. It exposes a high level API to users, for things
// like loading pages, adjusting the display and other browser functionality,

Powered by Google App Engine
This is Rietveld 408576698