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

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

Issue 1914603002: Replace ViewHostMsg_TextInputState_Params with content::TextInputState. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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/render_widget_host_view_child_frame.h
diff --git a/content/browser/frame_host/render_widget_host_view_child_frame.h b/content/browser/frame_host/render_widget_host_view_child_frame.h
index e6226ef9ce3cfc4b95f7e48a90ca9e4f43cf494a..b544338a8bf3b4031936cd108d4b563217a070ae 100644
--- a/content/browser/frame_host/render_widget_host_view_child_frame.h
+++ b/content/browser/frame_host/render_widget_host_view_child_frame.h
@@ -33,7 +33,7 @@ class SurfaceFactory;
enum class SurfaceDrawStatus;
}
-struct ViewHostMsg_TextInputState_Params;
+struct TextInputState;
Charlie Reis 2016/04/22 23:02:38 nit: Move to declarations below, since this belong
EhsanK 2016/04/25 19:09:00 Done.
namespace content {
class CrossProcessFrameConnector;
@@ -97,8 +97,7 @@ class CONTENT_EXPORT RenderWidgetHostViewChildFrame
void InitAsFullscreen(RenderWidgetHostView* reference_host_view) override;
void UpdateCursor(const WebCursor& cursor) override;
void SetIsLoading(bool is_loading) override;
- void TextInputStateChanged(
- const ViewHostMsg_TextInputState_Params& params) override;
+ void TextInputStateChanged(const TextInputState& params) override;
void ImeCancelComposition() override;
void ImeCompositionRangeChanged(
const gfx::Range& range,

Powered by Google App Engine
This is Rietveld 408576698