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

Side by Side Diff: third_party/WebKit/public/platform/WebCompositorMutations.h

Issue 1602343002: compositor-worker: cc->blink mutation plumbing (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@compositor-worker-ian-patch
Patch Set: Address Vollick comments Created 4 years, 11 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 WebCompositorMutations_h
6 #define WebCompositorMutations_h
7
8 #include "cc/animation/layer_tree_mutations.h"
9
10 namespace blink {
11
12 // This class contains the mutation data to be plumbed back to the main thread
13 // after a CompositorWorker callback runs. It is a do-nothing base class since
14 // these mutations are only used within blink.
15 struct WebCompositorMutations : public cc::LayerTreeMutations {
16 virtual ~WebCompositorMutations() {}
17 };
18
19 } // namespace blink
20
21 #endif // WebCompositorMutations_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698