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

Unified Diff: third_party/WebKit/Source/platform/graphics/CanvasSurfaceLayerBridgeClientImpl.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/CanvasSurfaceLayerBridgeClientImpl.h
diff --git a/third_party/WebKit/Source/platform/graphics/CanvasSurfaceLayerBridgeClientImpl.h b/third_party/WebKit/Source/platform/graphics/CanvasSurfaceLayerBridgeClientImpl.h
new file mode 100644
index 0000000000000000000000000000000000000000..9eefab1b2883a9d23f042d1c3fb632a8b60f1b8d
--- /dev/null
+++ b/third_party/WebKit/Source/platform/graphics/CanvasSurfaceLayerBridgeClientImpl.h
@@ -0,0 +1,30 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CanvasSurfaceLayerBridgeClientImpl_h
+#define CanvasSurfaceLayerBridgeClientImpl_h
+
+#include "platform/graphics/CanvasSurfaceLayerBridgeClient.h"
+#include "public/platform/modules/offscreencanvas/offscreen_canvas_surface.mojom-blink.h"
+#include "wtf/RefPtr.h"
+
+namespace blink {
+
+class PLATFORM_EXPORT CanvasSurfaceLayerBridgeClientImpl final : public CanvasSurfaceLayerBridgeClient {
+public:
+ explicit CanvasSurfaceLayerBridgeClientImpl();
+ ~CanvasSurfaceLayerBridgeClientImpl() override;
+
+ bool syncGetSurfaceId(cc::SurfaceId*) override;
+ void asyncRequestSurfaceCreation(const cc::SurfaceId&) override;
+ void asyncRequire(cc::SurfaceId, cc::SurfaceSequence) override;
+ void asyncSatisfy(cc::SurfaceSequence) override;
+
+private:
+ mojom::blink::OffscreenCanvasSurfacePtr m_service;
+};
+
+} // namespace blink
+
+#endif // CanvasSurfaceLayerBridgeClientImpl_h

Powered by Google App Engine
This is Rietveld 408576698