Chromium Code Reviews| 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 #include "platform/graphics/CanvasSurfaceLayerBridge.h" | 5 #include "platform/graphics/CanvasSurfaceLayerBridge.h" |
| 6 | 6 |
| 7 #include "cc/layers/surface_layer.h" | 7 #include "cc/layers/surface_layer.h" |
| 8 #include "cc/surfaces/surface_id.h" | 8 #include "cc/surfaces/surface_id.h" |
| 9 #include "cc/surfaces/surface_ref.h" | |
| 9 #include "cc/surfaces/surface_sequence.h" | 10 #include "cc/surfaces/surface_sequence.h" |
| 10 #include "platform/graphics/GraphicsLayer.h" | 11 #include "platform/graphics/GraphicsLayer.h" |
| 11 #include "platform/mojo/MojoHelper.h" | 12 #include "platform/mojo/MojoHelper.h" |
| 12 #include "public/platform/Platform.h" | 13 #include "public/platform/Platform.h" |
| 13 #include "public/platform/WebCompositorSupport.h" | 14 #include "public/platform/WebCompositorSupport.h" |
| 14 #include "public/platform/WebLayer.h" | 15 #include "public/platform/WebLayer.h" |
| 15 #include "ui/gfx/geometry/size.h" | 16 #include "ui/gfx/geometry/size.h" |
| 16 #include "wtf/Functional.h" | 17 #include "wtf/Functional.h" |
| 17 | 18 |
| 18 namespace blink { | 19 namespace blink { |
| 19 | 20 |
| 21 namespace { | |
| 22 | |
| 23 class SurfaceRef : public cc::SurfaceRefWithSequence<SurfaceRef> { | |
| 24 public: | |
| 25 SurfaceRef(const mojom::blink::OffscreenCanvasSurfacePtr& m_service) | |
| 26 : m_service(m_service) {} | |
| 27 void RequireSequence(const cc::SurfaceSequence& seq) override { | |
| 28 m_service->Require(id(), seq); | |
| 29 } | |
| 30 void SatisfySequence(const cc::SurfaceSequence& seq) override { | |
| 31 m_service->Satisfy(seq); | |
| 32 } | |
| 33 | |
| 34 private: | |
| 35 const mojom::blink::OffscreenCanvasSurfacePtr& m_service; | |
| 36 }; | |
| 37 | |
| 38 } // namespace | |
| 39 | |
| 20 CanvasSurfaceLayerBridge::CanvasSurfaceLayerBridge( | 40 CanvasSurfaceLayerBridge::CanvasSurfaceLayerBridge( |
| 21 mojom::blink::OffscreenCanvasSurfacePtr service) | 41 mojom::blink::OffscreenCanvasSurfacePtr service) |
| 22 : m_service(std::move(service)) {} | 42 : m_service(std::move(service)) {} |
| 23 | 43 |
| 24 CanvasSurfaceLayerBridge::~CanvasSurfaceLayerBridge() {} | 44 CanvasSurfaceLayerBridge::~CanvasSurfaceLayerBridge() {} |
| 25 | 45 |
| 26 bool CanvasSurfaceLayerBridge::createSurfaceLayer(int canvasWidth, | 46 bool CanvasSurfaceLayerBridge::createSurfaceLayer(int canvasWidth, |
| 27 int canvasHeight) { | 47 int canvasHeight) { |
| 28 if (!m_service->GetSurfaceId(&m_surfaceId)) | 48 if (!m_service->GetSurfaceId(&m_surfaceId)) |
| 29 return false; | 49 return false; |
| 30 | 50 |
| 31 cc::SurfaceLayer::SatisfyCallback satisfyCallback = | 51 cc::SurfaceRefPtr ref(new SurfaceRef(m_service)); |
| 32 convertToBaseCallback(WTF::bind( | 52 ref->SetMetadata(m_surfaceId, 1.f, gfx::Size(canvasWidth, canvasHeight)); |
|
Fady Samuel
2016/11/30 19:51:29
I really don't like the idea of calling this metad
| |
| 33 &CanvasSurfaceLayerBridge::satisfyCallback, WTF::unretained(this))); | 53 m_surfaceLayer = cc::SurfaceLayer::Create(std::move(ref)); |
| 34 cc::SurfaceLayer::RequireCallback requireCallback = | |
| 35 convertToBaseCallback(WTF::bind( | |
| 36 &CanvasSurfaceLayerBridge::requireCallback, WTF::unretained(this))); | |
| 37 m_surfaceLayer = cc::SurfaceLayer::Create(std::move(satisfyCallback), | |
| 38 std::move(requireCallback)); | |
| 39 m_surfaceLayer->SetSurfaceId(m_surfaceId, 1.f, | |
| 40 gfx::Size(canvasWidth, canvasHeight)); | |
| 41 | 54 |
| 42 m_webLayer = Platform::current()->compositorSupport()->createLayerFromCCLayer( | 55 m_webLayer = Platform::current()->compositorSupport()->createLayerFromCCLayer( |
| 43 m_surfaceLayer.get()); | 56 m_surfaceLayer.get()); |
| 44 GraphicsLayer::registerContentsLayer(m_webLayer.get()); | 57 GraphicsLayer::registerContentsLayer(m_webLayer.get()); |
| 45 return true; | 58 return true; |
| 46 } | 59 } |
| 47 | 60 |
| 48 void CanvasSurfaceLayerBridge::satisfyCallback( | |
| 49 const cc::SurfaceSequence& sequence) { | |
| 50 m_service->Satisfy(sequence); | |
| 51 } | |
| 52 | |
| 53 void CanvasSurfaceLayerBridge::requireCallback( | |
| 54 const cc::SurfaceId& surfaceId, | |
| 55 const cc::SurfaceSequence& sequence) { | |
| 56 m_service->Require(surfaceId, sequence); | |
| 57 } | |
| 58 | |
| 59 } // namespace blink | 61 } // namespace blink |
| OLD | NEW |