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 <set> | 9 #include <set> |
10 #include <string> | 10 #include <string> |
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
167 virtual void ImeCompositionRangeChanged( | 167 virtual void ImeCompositionRangeChanged( |
168 const gfx::Range& range, | 168 const gfx::Range& range, |
169 const std::vector<gfx::Rect>& character_bounds) OVERRIDE; | 169 const std::vector<gfx::Rect>& character_bounds) OVERRIDE; |
170 virtual void RenderProcessGone(base::TerminationStatus status, | 170 virtual void RenderProcessGone(base::TerminationStatus status, |
171 int error_code) OVERRIDE; | 171 int error_code) OVERRIDE; |
172 virtual void Destroy() OVERRIDE; | 172 virtual void Destroy() OVERRIDE; |
173 virtual void SetTooltipText(const base::string16& tooltip_text) OVERRIDE; | 173 virtual void SetTooltipText(const base::string16& tooltip_text) OVERRIDE; |
174 virtual void SelectionChanged(const base::string16& text, | 174 virtual void SelectionChanged(const base::string16& text, |
175 size_t offset, | 175 size_t offset, |
176 const gfx::Range& range) OVERRIDE; | 176 const gfx::Range& range) OVERRIDE; |
177 virtual gfx::Size GetRequestedRendererSize() const OVERRIDE; | |
danakj
2014/05/20 19:28:56
s/Get//?
| |
177 virtual void SelectionBoundsChanged( | 178 virtual void SelectionBoundsChanged( |
178 const ViewHostMsg_SelectionBounds_Params& params) OVERRIDE; | 179 const ViewHostMsg_SelectionBounds_Params& params) OVERRIDE; |
179 virtual void ScrollOffsetChanged() OVERRIDE; | 180 virtual void ScrollOffsetChanged() OVERRIDE; |
180 virtual void CopyFromCompositingSurface( | 181 virtual void CopyFromCompositingSurface( |
181 const gfx::Rect& src_subrect, | 182 const gfx::Rect& src_subrect, |
182 const gfx::Size& dst_size, | 183 const gfx::Size& dst_size, |
183 const base::Callback<void(bool, const SkBitmap&)>& callback, | 184 const base::Callback<void(bool, const SkBitmap&)>& callback, |
184 const SkBitmap::Config config) OVERRIDE; | 185 const SkBitmap::Config config) OVERRIDE; |
185 virtual void CopyFromCompositingSurfaceToVideoFrame( | 186 virtual void CopyFromCompositingSurfaceToVideoFrame( |
186 const gfx::Rect& src_subrect, | 187 const gfx::Rect& src_subrect, |
(...skipping 375 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
562 // etc. | 563 // etc. |
563 scoped_ptr<content::LegacyRenderWidgetHostHWND> | 564 scoped_ptr<content::LegacyRenderWidgetHostHWND> |
564 legacy_render_widget_host_HWND_; | 565 legacy_render_widget_host_HWND_; |
565 #endif | 566 #endif |
566 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); | 567 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); |
567 }; | 568 }; |
568 | 569 |
569 } // namespace content | 570 } // namespace content |
570 | 571 |
571 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ | 572 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ |
OLD | NEW |