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

Side by Side Diff: cc/blimp/remote_compositor_bridge_client.h

Issue 2362073002: cc/blimp: Add a LayerTreeHostRemote implementation. (Closed)
Patch Set: Rebase Created 4 years, 2 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
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef CC_BLIMP_REMOTE_COMPOSITOR_BRIDGE_CLIENT_H_
6 #define CC_BLIMP_REMOTE_COMPOSITOR_BRIDGE_CLIENT_H_
7
8 #include "base/macros.h"
9 #include "cc/base/cc_export.h"
10
11 namespace base {
12 class SingleThreadTaskRunner;
13 } // namespace base
14
15 namespace cc {
16 class CompositorProtoState;
17
18 class CC_EXPORT RemoteCompositorBridgeClient {
19 public:
20 virtual ~RemoteCompositorBridgeClient() {}
21
22 // Called in response to a ScheduleMainFrame request made on the
23 // RemoteCompositorBridge.
24 // Note: The method should always be invoked asynchronously after the request
25 // is made.
26 virtual void BeginMainFrame() = 0;
27 };
28
29 } // namespace cc
30
31 #endif // CC_BLIMP_REMOTE_COMPOSITOR_BRIDGE_CLIENT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698