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

Side by Side Diff: services/ui/surfaces/display_provider.h

Issue 2795823003: Create //components/viz/frame_sinks and move code. (Closed)
Patch Set: Fix DEPS. Created 3 years, 8 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
« no previous file with comments | « services/ui/surfaces/DEPS ('k') | services/ui/surfaces/mojo_frame_sink_manager.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef SERVICES_UI_SURFACES_DISPLAY_PROVIDER_H_
6 #define SERVICES_UI_SURFACES_DISPLAY_PROVIDER_H_
7
8 #include <memory>
9
10 #include "gpu/ipc/common/surface_handle.h"
11
12 namespace cc {
13 class BeginFrameSource;
14 class Display;
15 class FrameSinkId;
16 }
17
18 namespace ui {
19
20 // Handles creating new cc::Displays and related classes for
21 // MojoFrameSinkManager.
22 class DisplayProvider {
23 public:
24 virtual ~DisplayProvider() {}
25
26 // Creates a new cc::Display for |surface_handle| with |frame_sink_id|. Will
27 // also create cc::BeginFrameSource and return it in |begin_frame_source|.
28 virtual std::unique_ptr<cc::Display> CreateDisplay(
29 const cc::FrameSinkId& frame_sink_id,
30 gpu::SurfaceHandle surface_handle,
31 std::unique_ptr<cc::BeginFrameSource>* begin_frame_source) = 0;
32 };
33
34 } // namespace ui
35
36 #endif // SERVICES_UI_SURFACES_DISPLAY_PROVIDER_H_
OLDNEW
« no previous file with comments | « services/ui/surfaces/DEPS ('k') | services/ui/surfaces/mojo_frame_sink_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698