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, |