| 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_WIN_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_WIN_H_ |
| 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_WIN_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_WIN_H_ |
| 7 | 7 |
| 8 #include <atlbase.h> | 8 #include <atlbase.h> |
| 9 #include <atlapp.h> | 9 #include <atlapp.h> |
| 10 #include <atlcrack.h> | 10 #include <atlcrack.h> |
| (...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 187 virtual void ScrollOffsetChanged() OVERRIDE; | 187 virtual void ScrollOffsetChanged() OVERRIDE; |
| 188 virtual void ImeCancelComposition() OVERRIDE; | 188 virtual void ImeCancelComposition() OVERRIDE; |
| 189 virtual void ImeCompositionRangeChanged( | 189 virtual void ImeCompositionRangeChanged( |
| 190 const ui::Range& range, | 190 const ui::Range& range, |
| 191 const std::vector<gfx::Rect>& character_bounds) OVERRIDE; | 191 const std::vector<gfx::Rect>& character_bounds) OVERRIDE; |
| 192 virtual void DidUpdateBackingStore( | 192 virtual void DidUpdateBackingStore( |
| 193 const gfx::Rect& scroll_rect, | 193 const gfx::Rect& scroll_rect, |
| 194 const gfx::Vector2d& scroll_delta, | 194 const gfx::Vector2d& scroll_delta, |
| 195 const std::vector<gfx::Rect>& copy_rects, | 195 const std::vector<gfx::Rect>& copy_rects, |
| 196 const ui::LatencyInfo& latency_info) OVERRIDE; | 196 const ui::LatencyInfo& latency_info) OVERRIDE; |
| 197 virtual void RenderViewGone(base::TerminationStatus status, | 197 virtual void RenderProcessGone(base::TerminationStatus status, |
| 198 int error_code) OVERRIDE; | 198 int error_code) OVERRIDE; |
| 199 virtual bool CanSubscribeFrame() const OVERRIDE; | 199 virtual bool CanSubscribeFrame() const OVERRIDE; |
| 200 | 200 |
| 201 // called by WebContentsImpl before DestroyWindow | 201 // called by WebContentsImpl before DestroyWindow |
| 202 virtual void WillWmDestroy() OVERRIDE; | 202 virtual void WillWmDestroy() OVERRIDE; |
| 203 virtual void Destroy() OVERRIDE; | 203 virtual void Destroy() OVERRIDE; |
| 204 virtual void SetTooltipText(const string16& tooltip_text) OVERRIDE; | 204 virtual void SetTooltipText(const string16& tooltip_text) OVERRIDE; |
| 205 virtual BackingStore* AllocBackingStore(const gfx::Size& size) OVERRIDE; | 205 virtual BackingStore* AllocBackingStore(const gfx::Size& size) OVERRIDE; |
| 206 virtual void CopyFromCompositingSurface( | 206 virtual void CopyFromCompositingSurface( |
| 207 const gfx::Rect& src_subrect, | 207 const gfx::Rect& src_subrect, |
| 208 const gfx::Size& dst_size, | 208 const gfx::Size& dst_size, |
| (...skipping 389 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 598 base::win::ScopedComPtr<IAccessible> window_iaccessible_; | 598 base::win::ScopedComPtr<IAccessible> window_iaccessible_; |
| 599 | 599 |
| 600 ui::LatencyInfo software_latency_info_; | 600 ui::LatencyInfo software_latency_info_; |
| 601 | 601 |
| 602 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewWin); | 602 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewWin); |
| 603 }; | 603 }; |
| 604 | 604 |
| 605 } // namespace content | 605 } // namespace content |
| 606 | 606 |
| 607 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_WIN_H_ | 607 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_WIN_H_ |
| OLD | NEW |