OLD | NEW |
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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
89 gfx::NativeViewAccessible GetNativeViewAccessible() override; | 89 gfx::NativeViewAccessible GetNativeViewAccessible() override; |
90 void SetBackgroundColor(SkColor color) override; | 90 void SetBackgroundColor(SkColor color) override; |
91 gfx::Size GetPhysicalBackingSize() const override; | 91 gfx::Size GetPhysicalBackingSize() const override; |
92 | 92 |
93 // RenderWidgetHostViewBase implementation. | 93 // RenderWidgetHostViewBase implementation. |
94 void InitAsPopup(RenderWidgetHostView* parent_host_view, | 94 void InitAsPopup(RenderWidgetHostView* parent_host_view, |
95 const gfx::Rect& bounds) override; | 95 const gfx::Rect& bounds) override; |
96 void InitAsFullscreen(RenderWidgetHostView* reference_host_view) override; | 96 void InitAsFullscreen(RenderWidgetHostView* reference_host_view) override; |
97 void UpdateCursor(const WebCursor& cursor) override; | 97 void UpdateCursor(const WebCursor& cursor) override; |
98 void SetIsLoading(bool is_loading) override; | 98 void SetIsLoading(bool is_loading) override; |
99 void TextInputStateChanged( | |
100 const ViewHostMsg_TextInputState_Params& params) override; | |
101 void ImeCancelComposition() override; | 99 void ImeCancelComposition() override; |
102 void ImeCompositionRangeChanged( | 100 void ImeCompositionRangeChanged( |
103 const gfx::Range& range, | 101 const gfx::Range& range, |
104 const std::vector<gfx::Rect>& character_bounds) override; | 102 const std::vector<gfx::Rect>& character_bounds) override; |
105 void RenderProcessGone(base::TerminationStatus status, | 103 void RenderProcessGone(base::TerminationStatus status, |
106 int error_code) override; | 104 int error_code) override; |
107 void Destroy() override; | 105 void Destroy() override; |
108 void SetTooltipText(const base::string16& tooltip_text) override; | 106 void SetTooltipText(const base::string16& tooltip_text) override; |
109 void SelectionChanged(const base::string16& text, | 107 void SelectionChanged(const base::string16& text, |
110 size_t offset, | 108 size_t offset, |
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
233 // it convenient to swap() when processing the list. | 231 // it convenient to swap() when processing the list. |
234 FrameSwappedCallbackList frame_swapped_callbacks_; | 232 FrameSwappedCallbackList frame_swapped_callbacks_; |
235 | 233 |
236 base::WeakPtrFactory<RenderWidgetHostViewChildFrame> weak_factory_; | 234 base::WeakPtrFactory<RenderWidgetHostViewChildFrame> weak_factory_; |
237 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewChildFrame); | 235 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewChildFrame); |
238 }; | 236 }; |
239 | 237 |
240 } // namespace content | 238 } // namespace content |
241 | 239 |
242 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_CHILD_FRAME_H_ | 240 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_CHILD_FRAME_H_ |
OLD | NEW |