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 "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
9 #include "content/browser/renderer_host/render_widget_host_view_base.h" | 9 #include "content/browser/renderer_host/render_widget_host_view_base.h" |
10 #include "content/common/content_export.h" | 10 #include "content/common/content_export.h" |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 virtual void SetIsLoading(bool is_loading) OVERRIDE; | 68 virtual void SetIsLoading(bool is_loading) OVERRIDE; |
69 virtual void TextInputTypeChanged(ui::TextInputType type, | 69 virtual void TextInputTypeChanged(ui::TextInputType type, |
70 ui::TextInputMode input_mode, | 70 ui::TextInputMode input_mode, |
71 bool can_compose_inline) OVERRIDE; | 71 bool can_compose_inline) OVERRIDE; |
72 virtual void ImeCancelComposition() OVERRIDE; | 72 virtual void ImeCancelComposition() OVERRIDE; |
73 #if defined(OS_MACOSX) || defined(USE_AURA) | 73 #if defined(OS_MACOSX) || defined(USE_AURA) |
74 virtual void ImeCompositionRangeChanged( | 74 virtual void ImeCompositionRangeChanged( |
75 const gfx::Range& range, | 75 const gfx::Range& range, |
76 const std::vector<gfx::Rect>& character_bounds) OVERRIDE; | 76 const std::vector<gfx::Rect>& character_bounds) OVERRIDE; |
77 #endif | 77 #endif |
78 virtual void DidUpdateBackingStore( | |
79 const gfx::Rect& scroll_rect, | |
80 const gfx::Vector2d& scroll_delta, | |
81 const std::vector<gfx::Rect>& copy_rects, | |
82 const std::vector<ui::LatencyInfo>& latency_info) OVERRIDE; | |
83 virtual void RenderProcessGone(base::TerminationStatus status, | 78 virtual void RenderProcessGone(base::TerminationStatus status, |
84 int error_code) OVERRIDE; | 79 int error_code) OVERRIDE; |
85 virtual void Destroy() OVERRIDE; | 80 virtual void Destroy() OVERRIDE; |
86 virtual void SetTooltipText(const base::string16& tooltip_text) OVERRIDE; | 81 virtual void SetTooltipText(const base::string16& tooltip_text) OVERRIDE; |
87 virtual void SelectionChanged(const base::string16& text, | 82 virtual void SelectionChanged(const base::string16& text, |
88 size_t offset, | 83 size_t offset, |
89 const gfx::Range& range) OVERRIDE; | 84 const gfx::Range& range) OVERRIDE; |
90 virtual void SelectionBoundsChanged( | 85 virtual void SelectionBoundsChanged( |
91 const ViewHostMsg_SelectionBounds_Params& params) OVERRIDE; | 86 const ViewHostMsg_SelectionBounds_Params& params) OVERRIDE; |
92 #if defined(OS_ANDROID) | 87 #if defined(OS_ANDROID) |
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
176 // sent through it are routed to the embedding renderer process. | 171 // sent through it are routed to the embedding renderer process. |
177 CrossProcessFrameConnector* frame_connector_; | 172 CrossProcessFrameConnector* frame_connector_; |
178 | 173 |
179 private: | 174 private: |
180 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewChildFrame); | 175 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewChildFrame); |
181 }; | 176 }; |
182 | 177 |
183 } // namespace content | 178 } // namespace content |
184 | 179 |
185 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_CHILD_FRAME_H_ | 180 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_CHILD_FRAME_H_ |
OLD | NEW |