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

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

Issue 2294963002: Submit Compositor Frame from OffscreenCanvas on main (Closed)
Patch Set: update global interface listing 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/platform/graphics/OffscreenCanvasFrameDispatcherImpl.h
diff --git a/third_party/WebKit/Source/platform/graphics/OffscreenCanvasFrameDispatcherImpl.h b/third_party/WebKit/Source/platform/graphics/OffscreenCanvasFrameDispatcherImpl.h
new file mode 100644
index 0000000000000000000000000000000000000000..52cdc7af49b703ec53c8f69ebe9341705d5d64dc
--- /dev/null
+++ b/third_party/WebKit/Source/platform/graphics/OffscreenCanvasFrameDispatcherImpl.h
@@ -0,0 +1,32 @@
+// 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 OffscreenCanvasFrameDispatcherImpl_h
+#define OffscreenCanvasFrameDispatcherImpl_h
+
+#include "cc/surfaces/surface_id.h"
+#include "platform/graphics/OffscreenCanvasFrameDispatcher.h"
+#include "public/platform/modules/offscreencanvas/offscreen_canvas_surface.mojom-blink.h"
+#include <memory>
+
+namespace blink {
+
+class PLATFORM_EXPORT OffscreenCanvasFrameDispatcherImpl final : public OffscreenCanvasFrameDispatcher {
+public:
+ explicit OffscreenCanvasFrameDispatcherImpl(uint32_t clientId, uint32_t localId, uint64_t nonce, int width, int height);
+
+ // OffscreenCanvasFrameDispatcher implementation.
+ ~OffscreenCanvasFrameDispatcherImpl() override {}
+ void dispatchFrame() override;
+
+private:
+ cc::SurfaceId m_surfaceId;
danakj 2016/09/02 21:51:00 const also?
xlai (Olivia) 2016/09/02 23:41:28 Done.
+ const int m_width;
+ const int m_height;
+ mojom::blink::OffscreenCanvasFrameReceiverPtr m_service;
+};
+
+} // namespace blink
+
+#endif // OffscreenCanvasFrameDispatcherImpl_h

Powered by Google App Engine
This is Rietveld 408576698