OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 OffscreenCanvasFrameDispatcherImpl_h | 5 #ifndef OffscreenCanvasFrameDispatcherImpl_h |
6 #define OffscreenCanvasFrameDispatcherImpl_h | 6 #define OffscreenCanvasFrameDispatcherImpl_h |
7 | 7 |
8 #include "cc/ipc/mojo_compositor_frame_sink.mojom-blink.h" | 8 #include "cc/ipc/mojo_compositor_frame_sink.mojom-blink.h" |
9 #include "cc/resources/shared_bitmap.h" | 9 #include "cc/resources/shared_bitmap.h" |
10 #include "cc/surfaces/surface_id.h" | 10 #include "cc/surfaces/surface_id.h" |
11 #include "mojo/public/cpp/bindings/binding.h" | 11 #include "mojo/public/cpp/bindings/binding.h" |
12 #include "platform/graphics/OffscreenCanvasFrameDispatcher.h" | 12 #include "platform/graphics/OffscreenCanvasFrameDispatcher.h" |
13 #include "platform/graphics/StaticBitmapImage.h" | 13 #include "platform/graphics/StaticBitmapImage.h" |
14 #include "wtf/Compiler.h" | 14 #include "wtf/Compiler.h" |
15 #include <memory> | 15 #include <memory> |
16 | 16 |
17 namespace blink { | 17 namespace blink { |
18 | 18 |
19 class PLATFORM_EXPORT OffscreenCanvasFrameDispatcherImpl final | 19 class PLATFORM_EXPORT OffscreenCanvasFrameDispatcherImpl final |
20 : public OffscreenCanvasFrameDispatcher, | 20 : public OffscreenCanvasFrameDispatcher, |
21 WTF_NON_EXPORTED_BASE( | 21 WTF_NON_EXPORTED_BASE( |
22 public cc::mojom::blink::MojoCompositorFrameSinkClient) { | 22 public cc::mojom::blink::MojoCompositorFrameSinkClient) { |
23 public: | 23 public: |
24 OffscreenCanvasFrameDispatcherImpl(uint32_t clientId, | 24 OffscreenCanvasFrameDispatcherImpl(uint32_t clientId, |
25 uint32_t sinkId, | 25 uint32_t sinkId, |
26 uint32_t localId, | 26 uint32_t localId, |
27 uint64_t nonce, | 27 uint64_t nonceHigh, |
| 28 uint64_t nonceLow, |
28 int width, | 29 int width, |
29 int height); | 30 int height); |
30 | 31 |
31 // OffscreenCanvasFrameDispatcher implementation. | 32 // OffscreenCanvasFrameDispatcher implementation. |
32 ~OffscreenCanvasFrameDispatcherImpl() override {} | 33 ~OffscreenCanvasFrameDispatcherImpl() override {} |
33 void dispatchFrame(RefPtr<StaticBitmapImage>, | 34 void dispatchFrame(RefPtr<StaticBitmapImage>, |
34 bool isWebGLSoftwareRendering = false) override; | 35 bool isWebGLSoftwareRendering = false) override; |
35 | 36 |
36 // cc::mojom::blink::MojoCompositorFrameSinkClient implementation. | 37 // cc::mojom::blink::MojoCompositorFrameSinkClient implementation. |
37 void ReturnResources( | 38 void ReturnResources( |
(...skipping 18 matching lines...) Expand all Loading... |
56 RefPtr<StaticBitmapImage>); | 57 RefPtr<StaticBitmapImage>); |
57 void setTransferableResourceMemoryToTexture(cc::TransferableResource&, | 58 void setTransferableResourceMemoryToTexture(cc::TransferableResource&, |
58 RefPtr<StaticBitmapImage>); | 59 RefPtr<StaticBitmapImage>); |
59 void setTransferableResourceInTexture(cc::TransferableResource&, | 60 void setTransferableResourceInTexture(cc::TransferableResource&, |
60 RefPtr<StaticBitmapImage>); | 61 RefPtr<StaticBitmapImage>); |
61 }; | 62 }; |
62 | 63 |
63 } // namespace blink | 64 } // namespace blink |
64 | 65 |
65 #endif // OffscreenCanvasFrameDispatcherImpl_h | 66 #endif // OffscreenCanvasFrameDispatcherImpl_h |
OLD | NEW |