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

Unified Diff: third_party/WebKit/Source/platform/graphics/CanvasSurfaceLayerBridge.h

Issue 2036663003: Establish mojo service between Canvas (blink) and SurfaceManager (browser) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: OWNERS change on offscreencanvas folder Created 4 years, 6 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/platform/graphics/CanvasSurfaceLayerBridge.h
diff --git a/third_party/WebKit/Source/platform/graphics/CanvasSurfaceLayerBridge.h b/third_party/WebKit/Source/platform/graphics/CanvasSurfaceLayerBridge.h
index 5f9adc94db478006823e97a61578bf29ab717039..56980ab67508b811fd05749f479a1023fc57e496 100644
--- a/third_party/WebKit/Source/platform/graphics/CanvasSurfaceLayerBridge.h
+++ b/third_party/WebKit/Source/platform/graphics/CanvasSurfaceLayerBridge.h
@@ -6,13 +6,15 @@
#define CanvasSurfaceLayerBridge_h
#include "base/memory/ref_counted.h"
+#include "cc/surfaces/surface_id.h"
#include "platform/PlatformExport.h"
+#include "platform/graphics/CanvasSurfaceLayerBridgeClient.h"
#include <memory>
namespace cc {
-// TODO(611796): replace SolidColorLayer with SurfaceLayer
-class SolidColorLayer;
-}
+class SurfaceLayer;
+struct SurfaceSequence;
+} // namespace cc
namespace blink {
@@ -20,15 +22,23 @@ class WebLayer;
class PLATFORM_EXPORT CanvasSurfaceLayerBridge {
public:
- explicit CanvasSurfaceLayerBridge();
+ explicit CanvasSurfaceLayerBridge(std::unique_ptr<CanvasSurfaceLayerBridgeClient>);
~CanvasSurfaceLayerBridge();
+ bool createSurfaceLayer(int canvasWidth, int canvasHeight);
WebLayer* getWebLayer() const { return m_webLayer.get(); }
+ const cc::SurfaceId& getSurfaceId() const { return m_surfaceId; }
+ CanvasSurfaceLayerBridgeClient* getClient() const { return m_client.get(); }
+
+ void satisfyCallback(cc::SurfaceSequence);
+ void requireCallback(cc::SurfaceId, cc::SurfaceSequence);
private:
- scoped_refptr<cc::SolidColorLayer> m_solidColorLayer;
+ scoped_refptr<cc::SurfaceLayer> m_surfaceLayer;
std::unique_ptr<WebLayer> m_webLayer;
+ std::unique_ptr<CanvasSurfaceLayerBridgeClient> m_client;
+ cc::SurfaceId m_surfaceId;
};
-}
+} // namespace blink
-#endif // CanvasSurfaceLayerBridge
+#endif // CanvasSurfaceLayerBridge_h

Powered by Google App Engine
This is Rietveld 408576698