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

Side by Side Diff: content/browser/renderer_host/offscreen_canvas_surface_factory_impl.cc

Issue 2644653003: Make OffscreenCanvas animation in sync with its placeholder canvas's parent frame rate (Closed)
Patch Set: rebase again Created 3 years, 10 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 unified diff | Download patch
OLDNEW
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 "content/browser/renderer_host/offscreen_canvas_surface_factory_impl.h" 5 #include "content/browser/renderer_host/offscreen_canvas_surface_factory_impl.h"
6 6
7 #include "base/memory/ptr_util.h" 7 #include "base/memory/ptr_util.h"
8 #include "cc/surfaces/frame_sink_id.h" 8 #include "cc/surfaces/frame_sink_id.h"
9 #include "content/browser/renderer_host/offscreen_canvas_surface_impl.h" 9 #include "content/browser/renderer_host/offscreen_canvas_surface_impl.h"
10 #include "mojo/public/cpp/bindings/strong_binding.h" 10 #include "mojo/public/cpp/bindings/strong_binding.h"
11 11
12 namespace content { 12 namespace content {
13 13
14 // static 14 // static
15 void OffscreenCanvasSurfaceFactoryImpl::Create( 15 void OffscreenCanvasSurfaceFactoryImpl::Create(
16 blink::mojom::OffscreenCanvasSurfaceFactoryRequest request) { 16 blink::mojom::OffscreenCanvasSurfaceFactoryRequest request) {
17 mojo::MakeStrongBinding(base::MakeUnique<OffscreenCanvasSurfaceFactoryImpl>(), 17 mojo::MakeStrongBinding(base::MakeUnique<OffscreenCanvasSurfaceFactoryImpl>(),
18 std::move(request)); 18 std::move(request));
19 } 19 }
20 20
21 void OffscreenCanvasSurfaceFactoryImpl::CreateOffscreenCanvasSurface( 21 void OffscreenCanvasSurfaceFactoryImpl::CreateOffscreenCanvasSurface(
22 const cc::FrameSinkId& parent_frame_sink_id,
22 const cc::FrameSinkId& frame_sink_id, 23 const cc::FrameSinkId& frame_sink_id,
23 blink::mojom::OffscreenCanvasSurfaceClientPtr client, 24 blink::mojom::OffscreenCanvasSurfaceClientPtr client,
24 blink::mojom::OffscreenCanvasSurfaceRequest request) { 25 blink::mojom::OffscreenCanvasSurfaceRequest request) {
25 OffscreenCanvasSurfaceImpl::Create(frame_sink_id, std::move(client), 26 OffscreenCanvasSurfaceImpl::Create(parent_frame_sink_id, frame_sink_id,
26 std::move(request)); 27 std::move(client), std::move(request));
27 } 28 }
28 29
29 } // namespace content 30 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698