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

Unified Diff: content/browser/renderer_host/offscreen_canvas_surface_impl.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: content/browser/renderer_host/offscreen_canvas_surface_impl.h
diff --git a/content/browser/renderer_host/offscreen_canvas_surface_impl.h b/content/browser/renderer_host/offscreen_canvas_surface_impl.h
new file mode 100644
index 0000000000000000000000000000000000000000..c27abcaf74bb5e69027f58b43f73936ae5d5951b
--- /dev/null
+++ b/content/browser/renderer_host/offscreen_canvas_surface_impl.h
@@ -0,0 +1,53 @@
+// 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 CONTENT_BROWSER_RENDERER_HOST_OFFSCREEN_CANVAS_SURFACE_IMPL_H_
+#define CONTENT_BROWSER_RENDERER_HOST_OFFSCREEN_CANVAS_SURFACE_IMPL_H_
+
+#include "cc/surfaces/surface_factory.h"
+#include "cc/surfaces/surface_factory_client.h"
+#include "cc/surfaces/surface_id.h"
+#include "cc/surfaces/surface_id_allocator.h"
+#include "mojo/public/cpp/bindings/interface_request.h"
+#include "mojo/public/cpp/bindings/string.h"
+#include "mojo/public/cpp/bindings/strong_binding.h"
+#include "third_party/WebKit/public/platform/modules/offscreencanvas/offscreen_canvas_surface.mojom.h"
+
+namespace content {
+
+class OffscreenCanvasSurfaceImpl : public blink::mojom::OffscreenCanvasSurface,
+ public cc::SurfaceFactoryClient {
+ public:
+ static void Create(
+ mojo::InterfaceRequest<blink::mojom::OffscreenCanvasSurface> request);
+
+ // blink::mojom::OffscreenCanvasSurface implementation.
+ void GetSurfaceId(const GetSurfaceIdCallback& callback) override;
+ void RequestSurfaceCreation(const cc::SurfaceId& surface_id) override;
+ void Require(const cc::SurfaceId& surface_id,
+ const cc::SurfaceSequence& sequence) override;
+ void Satisfy(const cc::SurfaceSequence& sequence) override;
+
+ // cc::SurfaceFactoryClient implementation.
+ void ReturnResources(const cc::ReturnedResourceArray& resources) override;
+ void WillDrawSurface(cc::SurfaceId id, const gfx::Rect& damage_rect) override;
+ void SetBeginFrameSource(cc::BeginFrameSource* begin_frame_source) override;
+
+ private:
+ ~OffscreenCanvasSurfaceImpl() override;
+ explicit OffscreenCanvasSurfaceImpl(
+ mojo::InterfaceRequest<blink::mojom::OffscreenCanvasSurface> request);
+
+ // Surface-related state
+ std::unique_ptr<cc::SurfaceIdAllocator> id_allocator_;
+ std::unique_ptr<cc::SurfaceFactory> surface_factory_;
+
+ mojo::StrongBinding<blink::mojom::OffscreenCanvasSurface> binding_;
+
+ DISALLOW_COPY_AND_ASSIGN(OffscreenCanvasSurfaceImpl);
+};
+
+} // namespace content
+
+#endif // CONTENT_BROWSER_RENDERER_HOST_OFFSCREEN_CANVAS_SURFACE_IMPL_H_

Powered by Google App Engine
This is Rietveld 408576698