OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ |
6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
177 bool can_compose_inline) OVERRIDE; | 177 bool can_compose_inline) OVERRIDE; |
178 virtual void ImeCancelComposition() OVERRIDE; | 178 virtual void ImeCancelComposition() OVERRIDE; |
179 virtual void ImeCompositionRangeChanged( | 179 virtual void ImeCompositionRangeChanged( |
180 const ui::Range& range, | 180 const ui::Range& range, |
181 const std::vector<gfx::Rect>& character_bounds) OVERRIDE; | 181 const std::vector<gfx::Rect>& character_bounds) OVERRIDE; |
182 virtual void DidUpdateBackingStore( | 182 virtual void DidUpdateBackingStore( |
183 const gfx::Rect& scroll_rect, | 183 const gfx::Rect& scroll_rect, |
184 const gfx::Vector2d& scroll_delta, | 184 const gfx::Vector2d& scroll_delta, |
185 const std::vector<gfx::Rect>& copy_rects, | 185 const std::vector<gfx::Rect>& copy_rects, |
186 const ui::LatencyInfo& latency_info) OVERRIDE; | 186 const ui::LatencyInfo& latency_info) OVERRIDE; |
187 virtual void RenderViewGone(base::TerminationStatus status, | 187 virtual void RenderProcessGone(base::TerminationStatus status, |
188 int error_code) OVERRIDE; | 188 int error_code) OVERRIDE; |
189 virtual void Destroy() OVERRIDE; | 189 virtual void Destroy() OVERRIDE; |
190 virtual void SetTooltipText(const string16& tooltip_text) OVERRIDE; | 190 virtual void SetTooltipText(const string16& tooltip_text) OVERRIDE; |
191 virtual void SelectionChanged(const string16& text, | 191 virtual void SelectionChanged(const string16& text, |
192 size_t offset, | 192 size_t offset, |
193 const ui::Range& range) OVERRIDE; | 193 const ui::Range& range) OVERRIDE; |
194 virtual void SelectionBoundsChanged( | 194 virtual void SelectionBoundsChanged( |
195 const ViewHostMsg_SelectionBounds_Params& params) OVERRIDE; | 195 const ViewHostMsg_SelectionBounds_Params& params) OVERRIDE; |
196 virtual void ScrollOffsetChanged() OVERRIDE; | 196 virtual void ScrollOffsetChanged() OVERRIDE; |
197 virtual BackingStore* AllocBackingStore(const gfx::Size& size) OVERRIDE; | 197 virtual BackingStore* AllocBackingStore(const gfx::Size& size) OVERRIDE; |
198 virtual void CopyFromCompositingSurface( | 198 virtual void CopyFromCompositingSurface( |
(...skipping 483 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
682 TouchEditingClient* touch_editing_client_; | 682 TouchEditingClient* touch_editing_client_; |
683 | 683 |
684 ui::LatencyInfo software_latency_info_; | 684 ui::LatencyInfo software_latency_info_; |
685 | 685 |
686 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); | 686 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); |
687 }; | 687 }; |
688 | 688 |
689 } // namespace content | 689 } // namespace content |
690 | 690 |
691 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ | 691 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ |
OLD | NEW |