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

Side by Side Diff: content/browser/frame_host/render_widget_host_view_child_frame.h

Issue 1652483002: Browser Side Text Input State Tracking for OOPIF. (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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_BROWSER_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_CHILD_FRAME_H_ 5 #ifndef CONTENT_BROWSER_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_CHILD_FRAME_H_
6 #define CONTENT_BROWSER_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_CHILD_FRAME_H_ 6 #define CONTENT_BROWSER_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_CHILD_FRAME_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 gfx::NativeViewAccessible GetNativeViewAccessible() override; 90 gfx::NativeViewAccessible GetNativeViewAccessible() override;
91 void SetBackgroundColor(SkColor color) override; 91 void SetBackgroundColor(SkColor color) override;
92 gfx::Size GetPhysicalBackingSize() const override; 92 gfx::Size GetPhysicalBackingSize() const override;
93 93
94 // RenderWidgetHostViewBase implementation. 94 // RenderWidgetHostViewBase implementation.
95 void InitAsPopup(RenderWidgetHostView* parent_host_view, 95 void InitAsPopup(RenderWidgetHostView* parent_host_view,
96 const gfx::Rect& bounds) override; 96 const gfx::Rect& bounds) override;
97 void InitAsFullscreen(RenderWidgetHostView* reference_host_view) override; 97 void InitAsFullscreen(RenderWidgetHostView* reference_host_view) override;
98 void UpdateCursor(const WebCursor& cursor) override; 98 void UpdateCursor(const WebCursor& cursor) override;
99 void SetIsLoading(bool is_loading) override; 99 void SetIsLoading(bool is_loading) override;
100 void TextInputStateChanged(
101 const ViewHostMsg_TextInputState_Params& params) override;
102 void ImeCancelComposition() override; 100 void ImeCancelComposition() override;
103 void ImeCompositionRangeChanged( 101 void ImeCompositionRangeChanged(
104 const gfx::Range& range, 102 const gfx::Range& range,
105 const std::vector<gfx::Rect>& character_bounds) override; 103 const std::vector<gfx::Rect>& character_bounds) override;
106 void RenderProcessGone(base::TerminationStatus status, 104 void RenderProcessGone(base::TerminationStatus status,
107 int error_code) override; 105 int error_code) override;
108 void Destroy() override; 106 void Destroy() override;
109 void SetTooltipText(const base::string16& tooltip_text) override; 107 void SetTooltipText(const base::string16& tooltip_text) override;
110 void SelectionChanged(const base::string16& text, 108 void SelectionChanged(const base::string16& text,
111 size_t offset, 109 size_t offset,
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
234 // it convenient to swap() when processing the list. 232 // it convenient to swap() when processing the list.
235 FrameSwappedCallbackList frame_swapped_callbacks_; 233 FrameSwappedCallbackList frame_swapped_callbacks_;
236 234
237 base::WeakPtrFactory<RenderWidgetHostViewChildFrame> weak_factory_; 235 base::WeakPtrFactory<RenderWidgetHostViewChildFrame> weak_factory_;
238 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewChildFrame); 236 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewChildFrame);
239 }; 237 };
240 238
241 } // namespace content 239 } // namespace content
242 240
243 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_CHILD_FRAME_H_ 241 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_CHILD_FRAME_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698