Chromium Code Reviews| OLD | NEW |
|---|---|
| (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 | |
| OLD | NEW |