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

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

Issue 1986153005: The on screen keyboard on Windows 8+ should not obscure the input field. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove include Created 4 years, 7 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_view_host_impl.h
diff --git a/content/browser/renderer_host/render_view_host_impl.h b/content/browser/renderer_host/render_view_host_impl.h
index d54b2d7d57322c2ff413483ae9fe0fb8ae766c1d..e5bcb01324b016a79d6c5e6969fb89c998d6f70c 100644
--- a/content/browser/renderer_host/render_view_host_impl.h
+++ b/content/browser/renderer_host/render_view_host_impl.h
@@ -47,6 +47,10 @@ struct FileChooserFileInfo;
struct FileChooserParams;
struct FrameReplicationState;
+#if defined(OS_WIN)
+class OnScreenKeyboardObserver;
+#endif
+
// This implements the RenderViewHost interface that is exposed to
// embedders of content, and adds things only visible to content.
//
@@ -408,6 +412,10 @@ class CONTENT_EXPORT RenderViewHostImpl : public RenderViewHost,
bool render_view_ready_on_process_launch_;
+#if defined(OS_WIN)
+ std::unique_ptr<OnScreenKeyboardObserver> keyboard_observer_;
+#endif
+
base::WeakPtrFactory<RenderViewHostImpl> weak_factory_;
DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl);

Powered by Google App Engine
This is Rietveld 408576698