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

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

Issue 12212057: [Autofill] Add ability to load Risk fingerprint data in AutofillDialogControllerImpl. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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_widget_host.h
diff --git a/content/public/browser/render_widget_host.h b/content/public/browser/render_widget_host.h
index a0e8d8a70d3754cab16206f905e10bd48e5741dd..64b7154fadc804dd33237fb0732d279555d0f3a7 100644
--- a/content/public/browser/render_widget_host.h
+++ b/content/public/browser/render_widget_host.h
@@ -28,6 +28,10 @@ namespace gfx {
class Rect;
}
+namespace WebKit {
+struct WebScreenInfo;
+}
+
namespace content {
class RenderProcessHost;
@@ -273,6 +277,9 @@ class CONTENT_EXPORT RenderWidgetHost : public IPC::Sender {
// Remove a keyboard listener.
virtual void RemoveKeyboardListener(KeyboardListener* listener) = 0;
+ // Get the screen info corresponding to this render widget.
+ virtual void GetWebScreenInfo(WebKit::WebScreenInfo* result) = 0;
+
protected:
friend class RenderWidgetHostImpl;

Powered by Google App Engine
This is Rietveld 408576698