Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(158)

Side by Side Diff: content/public/test/test_synchronous_compositor_android.h

Issue 2337913003: Fork cc::OutputSurface into cc::CompositorFrameSink. (Closed)
Patch Set: cfsfork: android-vulkan Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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_PUBLIC_TEST_TEST_SYNCHRONOUS_COMPOSITOR_ANDROID_H_ 5 #ifndef CONTENT_PUBLIC_TEST_TEST_SYNCHRONOUS_COMPOSITOR_ANDROID_H_
6 #define CONTENT_PUBLIC_TEST_TEST_SYNCHRONOUS_COMPOSITOR_ANDROID_H_ 6 #define CONTENT_PUBLIC_TEST_TEST_SYNCHRONOUS_COMPOSITOR_ANDROID_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 9
10 #include <memory> 10 #include <memory>
(...skipping 14 matching lines...) Expand all
25 25
26 // SynchronousCompositor overrides. 26 // SynchronousCompositor overrides.
27 SynchronousCompositor::Frame DemandDrawHw( 27 SynchronousCompositor::Frame DemandDrawHw(
28 const gfx::Size& viewport_size, 28 const gfx::Size& viewport_size,
29 const gfx::Rect& viewport_rect_for_tile_priority, 29 const gfx::Rect& viewport_rect_for_tile_priority,
30 const gfx::Transform& transform_for_tile_priority) override; 30 const gfx::Transform& transform_for_tile_priority) override;
31 void DemandDrawHwAsync( 31 void DemandDrawHwAsync(
32 const gfx::Size& viewport_size, 32 const gfx::Size& viewport_size,
33 const gfx::Rect& viewport_rect_for_tile_priority, 33 const gfx::Rect& viewport_rect_for_tile_priority,
34 const gfx::Transform& transform_for_tile_priority) override; 34 const gfx::Transform& transform_for_tile_priority) override;
35 void ReturnResources(uint32_t output_surface_id, 35 void ReturnResources(uint32_t compositor_frame_sink_id,
36 const cc::ReturnedResourceArray& resources) override; 36 const cc::ReturnedResourceArray& resources) override;
37 bool DemandDrawSw(SkCanvas* canvas) override; 37 bool DemandDrawSw(SkCanvas* canvas) override;
38 void SetMemoryPolicy(size_t bytes_limit) override {} 38 void SetMemoryPolicy(size_t bytes_limit) override {}
39 void DidChangeRootLayerScrollOffset( 39 void DidChangeRootLayerScrollOffset(
40 const gfx::ScrollOffset& root_offset) override {} 40 const gfx::ScrollOffset& root_offset) override {}
41 void SynchronouslyZoomBy(float zoom_delta, 41 void SynchronouslyZoomBy(float zoom_delta,
42 const gfx::Point& anchor) override {} 42 const gfx::Point& anchor) override {}
43 void OnComputeScroll(base::TimeTicks animate_time) override {} 43 void OnComputeScroll(base::TimeTicks animate_time) override {}
44 44
45 void SetHardwareFrame(uint32_t output_surface_id, 45 void SetHardwareFrame(uint32_t compositor_frame_sink_id,
46 std::unique_ptr<cc::CompositorFrame> frame); 46 std::unique_ptr<cc::CompositorFrame> frame);
47 47
48 struct ReturnedResources { 48 struct ReturnedResources {
49 ReturnedResources(); 49 ReturnedResources();
50 ReturnedResources(const ReturnedResources& other); 50 ReturnedResources(const ReturnedResources& other);
51 ~ReturnedResources(); 51 ~ReturnedResources();
52 52
53 uint32_t output_surface_id; 53 uint32_t compositor_frame_sink_id;
54 cc::ReturnedResourceArray resources; 54 cc::ReturnedResourceArray resources;
55 }; 55 };
56 using FrameAckArray = std::vector<ReturnedResources>; 56 using FrameAckArray = std::vector<ReturnedResources>;
57 void SwapReturnedResources(FrameAckArray* array); 57 void SwapReturnedResources(FrameAckArray* array);
58 58
59 private: 59 private:
60 SynchronousCompositorClient* client_; 60 SynchronousCompositorClient* client_;
61 const int process_id_; 61 const int process_id_;
62 const int routing_id_; 62 const int routing_id_;
63 SynchronousCompositor::Frame hardware_frame_; 63 SynchronousCompositor::Frame hardware_frame_;
64 FrameAckArray frame_ack_array_; 64 FrameAckArray frame_ack_array_;
65 65
66 DISALLOW_COPY_AND_ASSIGN(TestSynchronousCompositor); 66 DISALLOW_COPY_AND_ASSIGN(TestSynchronousCompositor);
67 }; 67 };
68 68
69 } // namespace content 69 } // namespace content
70 70
71 #endif // CONTENT_PUBLIC_TEST_TEST_SYNCHRONOUS_COMPOSITOR_ANDROID_H_ 71 #endif // CONTENT_PUBLIC_TEST_TEST_SYNCHRONOUS_COMPOSITOR_ANDROID_H_
OLDNEW
« no previous file with comments | « content/public/browser/android/synchronous_compositor.cc ('k') | content/public/test/test_synchronous_compositor_android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698