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

Side by Side Diff: third_party/WebKit/Source/platform/graphics/paint/PropertyTreeState.h

Issue 1973343003: Initial implementation of GeometryMapper (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: none 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2015 The Chromium Authors. All rights reserved.
Xianzhu 2016/06/22 23:20:30 Nit: 2016
wkorman 2016/06/22 23:33:33 2016?
chrishtr 2016/06/23 00:18:27 Done.
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 PropertyTreeState_h
6 #define PropertyTreeState_h
7
8 #include "wtf/HashFunctions.h"
9 #include "wtf/HashTraits.h"
10
11 namespace blink {
12
13 class TransformPaintPropertyNode;
14 class ClipPaintPropertyNode;
15 class EffectPaintPropertyNode;
16
17 struct PropertyTreeState {
wkorman 2016/06/22 23:33:33 Worth adding a brief doc comment even if just noti
chrishtr 2016/06/23 00:18:27 Done.
18 PropertyTreeState(
19 TransformPaintPropertyNode* transformArg,
wkorman 2016/06/22 23:33:33 I think it's ok to name these without 'Arg' and th
chrishtr 2016/06/23 00:18:27 Done.
20 ClipPaintPropertyNode* clipArg,
21 EffectPaintPropertyNode* effectArg)
22 : transform(transformArg), clip(clipArg), effect(effectArg) {}
23
24 TransformPaintPropertyNode* transform;
25 ClipPaintPropertyNode* clip;
26 EffectPaintPropertyNode* effect;
27 };
28
29 } // namespace blink
30
31 #endif // PropertyTreeState_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698