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

Unified Diff: content/browser/frame_host/interstitial_page_impl.h

Issue 1934423002: [NOT FOR REVIEW] [reland] Browser Side Text Input State Tracking for OOPIF (Aura Only) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Enhancing code 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/frame_host/interstitial_page_impl.h
diff --git a/content/browser/frame_host/interstitial_page_impl.h b/content/browser/frame_host/interstitial_page_impl.h
index cbefe14f18f9ffea664961b18b5290930f7a9532..3edeef63171f5d5ef7c5e9e020d5d415d71675bb 100644
--- a/content/browser/frame_host/interstitial_page_impl.h
+++ b/content/browser/frame_host/interstitial_page_impl.h
@@ -30,6 +30,7 @@ class NavigationEntry;
class NavigationControllerImpl;
class RenderViewHostImpl;
class RenderWidgetHostView;
+class TextInputManager;
class WebContentsView;
enum ResourceRequestAction {
@@ -157,6 +158,7 @@ class CONTENT_EXPORT InterstitialPageImpl
bool PreHandleKeyboardEvent(const NativeWebKeyboardEvent& event,
bool* is_keyboard_shortcut) override;
void HandleKeyboardEvent(const NativeWebKeyboardEvent& event) override;
+ TextInputManager* GetTextInputManager() override;
bool enabled() const { return enabled_; }
WebContents* web_contents() const;
@@ -296,6 +298,8 @@ class CONTENT_EXPORT InterstitialPageImpl
scoped_refptr<SessionStorageNamespace> session_storage_namespace_;
+ std::unique_ptr<TextInputManager> text_input_manager_;
+
base::WeakPtrFactory<InterstitialPageImpl> weak_ptr_factory_;
DISALLOW_COPY_AND_ASSIGN(InterstitialPageImpl);
« no previous file with comments | « chrome/browser/site_per_process_interactive_browsertest.cc ('k') | content/browser/frame_host/interstitial_page_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698