| 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 bool readback_config_rgb565) OVERRIDE; | 131 const SkBitmap::Config config) OVERRIDE; |
| 132 virtual void CopyFromCompositingSurfaceToVideoFrame( | 132 virtual void CopyFromCompositingSurfaceToVideoFrame( |
| 133 const gfx::Rect& src_subrect, | 133 const gfx::Rect& src_subrect, |
| 134 const scoped_refptr<media::VideoFrame>& target, | 134 const scoped_refptr<media::VideoFrame>& target, |
| 135 const base::Callback<void(bool)>& callback) OVERRIDE; | 135 const base::Callback<void(bool)>& callback) OVERRIDE; |
| 136 virtual bool CanCopyToVideoFrame() const OVERRIDE; | 136 virtual bool CanCopyToVideoFrame() const OVERRIDE; |
| 137 virtual void OnAcceleratedCompositingStateChange() OVERRIDE; | 137 virtual void OnAcceleratedCompositingStateChange() OVERRIDE; |
| 138 virtual void AcceleratedSurfaceInitialized(int host_id, | 138 virtual void AcceleratedSurfaceInitialized(int host_id, |
| 139 int route_id) OVERRIDE; | 139 int route_id) OVERRIDE; |
| 140 virtual void AcceleratedSurfaceBuffersSwapped( | 140 virtual void AcceleratedSurfaceBuffersSwapped( |
| 141 const GpuHostMsg_AcceleratedSurfaceBuffersSwapped_Params& params, | 141 const GpuHostMsg_AcceleratedSurfaceBuffersSwapped_Params& params, |
| (...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 384 private: | 384 private: |
| 385 typedef scoped_ptr<ui::test::ScopedSetSupportedScaleFactors> | 385 typedef scoped_ptr<ui::test::ScopedSetSupportedScaleFactors> |
| 386 ScopedSetSupportedScaleFactors; | 386 ScopedSetSupportedScaleFactors; |
| 387 ScopedSetSupportedScaleFactors scoped_set_supported_scale_factors_; | 387 ScopedSetSupportedScaleFactors scoped_set_supported_scale_factors_; |
| 388 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImplTestHarness); | 388 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImplTestHarness); |
| 389 }; | 389 }; |
| 390 | 390 |
| 391 } // namespace content | 391 } // namespace content |
| 392 | 392 |
| 393 #endif // CONTENT_TEST_TEST_RENDER_VIEW_HOST_H_ | 393 #endif // CONTENT_TEST_TEST_RENDER_VIEW_HOST_H_ |
| OLD | NEW |