| 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_TEST_TEST_RENDER_VIEW_HOST_H_ | 5 #ifndef CONTENT_TEST_TEST_RENDER_VIEW_HOST_H_ |
| 6 #define CONTENT_TEST_TEST_RENDER_VIEW_HOST_H_ | 6 #define CONTENT_TEST_TEST_RENDER_VIEW_HOST_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 121 virtual void Destroy() OVERRIDE; | 121 virtual void Destroy() OVERRIDE; |
| 122 virtual void SetTooltipText(const base::string16& tooltip_text) OVERRIDE {} | 122 virtual void SetTooltipText(const base::string16& tooltip_text) OVERRIDE {} |
| 123 virtual void SelectionBoundsChanged( | 123 virtual void SelectionBoundsChanged( |
| 124 const ViewHostMsg_SelectionBounds_Params& params) OVERRIDE {} | 124 const ViewHostMsg_SelectionBounds_Params& params) OVERRIDE {} |
| 125 virtual void ScrollOffsetChanged() OVERRIDE {} | 125 virtual void ScrollOffsetChanged() OVERRIDE {} |
| 126 virtual BackingStore* AllocBackingStore(const gfx::Size& size) OVERRIDE; | 126 virtual BackingStore* AllocBackingStore(const gfx::Size& size) OVERRIDE; |
| 127 virtual void CopyFromCompositingSurface( | 127 virtual void CopyFromCompositingSurface( |
| 128 const gfx::Rect& src_subrect, | 128 const gfx::Rect& src_subrect, |
| 129 const gfx::Size& dst_size, | 129 const gfx::Size& dst_size, |
| 130 const base::Callback<void(bool, const SkBitmap&)>& callback, | 130 const base::Callback<void(bool, const SkBitmap&)>& callback, |
| 131 const SkBitmap::Config config) OVERRIDE; | 131 const SkBitmap::Config config, |
| 132 scoped_ptr<SkBitmap> bitmap) OVERRIDE; |
| 132 virtual void CopyFromCompositingSurfaceToVideoFrame( | 133 virtual void CopyFromCompositingSurfaceToVideoFrame( |
| 133 const gfx::Rect& src_subrect, | 134 const gfx::Rect& src_subrect, |
| 134 const scoped_refptr<media::VideoFrame>& target, | 135 const scoped_refptr<media::VideoFrame>& target, |
| 135 const base::Callback<void(bool)>& callback) OVERRIDE; | 136 const base::Callback<void(bool)>& callback) OVERRIDE; |
| 136 virtual bool CanCopyToVideoFrame() const OVERRIDE; | 137 virtual bool CanCopyToVideoFrame() const OVERRIDE; |
| 137 virtual void OnAcceleratedCompositingStateChange() OVERRIDE; | 138 virtual void OnAcceleratedCompositingStateChange() OVERRIDE; |
| 138 virtual void AcceleratedSurfaceInitialized(int host_id, | 139 virtual void AcceleratedSurfaceInitialized(int host_id, |
| 139 int route_id) OVERRIDE; | 140 int route_id) OVERRIDE; |
| 140 virtual void AcceleratedSurfaceBuffersSwapped( | 141 virtual void AcceleratedSurfaceBuffersSwapped( |
| 141 const GpuHostMsg_AcceleratedSurfaceBuffersSwapped_Params& params, | 142 const GpuHostMsg_AcceleratedSurfaceBuffersSwapped_Params& params, |
| (...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 388 private: | 389 private: |
| 389 typedef scoped_ptr<ui::test::ScopedSetSupportedScaleFactors> | 390 typedef scoped_ptr<ui::test::ScopedSetSupportedScaleFactors> |
| 390 ScopedSetSupportedScaleFactors; | 391 ScopedSetSupportedScaleFactors; |
| 391 ScopedSetSupportedScaleFactors scoped_set_supported_scale_factors_; | 392 ScopedSetSupportedScaleFactors scoped_set_supported_scale_factors_; |
| 392 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImplTestHarness); | 393 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImplTestHarness); |
| 393 }; | 394 }; |
| 394 | 395 |
| 395 } // namespace content | 396 } // namespace content |
| 396 | 397 |
| 397 #endif // CONTENT_TEST_TEST_RENDER_VIEW_HOST_H_ | 398 #endif // CONTENT_TEST_TEST_RENDER_VIEW_HOST_H_ |
| OLD | NEW |