OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CC_TREES_EFFECT_NODE_H_ | 5 #ifndef CC_TREES_EFFECT_NODE_H_ |
6 #define CC_TREES_EFFECT_NODE_H_ | 6 #define CC_TREES_EFFECT_NODE_H_ |
7 | 7 |
8 #include "cc/base/cc_export.h" | 8 #include "cc/base/filter_operations.h" |
9 #include "cc/output/filter_operations.h" | 9 #include "cc/cc_export.h" |
10 #include "third_party/skia/include/core/SkBlendMode.h" | 10 #include "third_party/skia/include/core/SkBlendMode.h" |
11 #include "ui/gfx/geometry/point_f.h" | 11 #include "ui/gfx/geometry/point_f.h" |
12 #include "ui/gfx/geometry/size_f.h" | 12 #include "ui/gfx/geometry/size_f.h" |
13 | 13 |
14 namespace base { | 14 namespace base { |
15 namespace trace_event { | 15 namespace trace_event { |
16 class TracedValue; | 16 class TracedValue; |
17 } // namespace trace_event | 17 } // namespace trace_event |
18 } // namespace base | 18 } // namespace base |
19 | 19 |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
74 int mask_layer_id; | 74 int mask_layer_id; |
75 | 75 |
76 bool operator==(const EffectNode& other) const; | 76 bool operator==(const EffectNode& other) const; |
77 | 77 |
78 void AsValueInto(base::trace_event::TracedValue* value) const; | 78 void AsValueInto(base::trace_event::TracedValue* value) const; |
79 }; | 79 }; |
80 | 80 |
81 } // namespace cc | 81 } // namespace cc |
82 | 82 |
83 #endif // CC_TREES_EFFECT_NODE_H_ | 83 #endif // CC_TREES_EFFECT_NODE_H_ |
OLD | NEW |