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

Side by Side Diff: cc/trees/effect_node.cc

Issue 2646623002: cc: Remove all blimp code from cc. (Closed)
Patch Set: test build Created 3 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
« no previous file with comments | « cc/trees/compositor_mode.h ('k') | cc/trees/layer_tree.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 #include "base/trace_event/trace_event_argument.h" 5 #include "base/trace_event/trace_event_argument.h"
6 #include "cc/layers/layer.h" 6 #include "cc/layers/layer.h"
7 #include "cc/proto/gfx_conversions.h"
8 #include "cc/proto/skia_conversions.h"
9 #include "cc/trees/effect_node.h" 7 #include "cc/trees/effect_node.h"
10 #include "cc/trees/property_tree.h" 8 #include "cc/trees/property_tree.h"
11 9
12 namespace cc { 10 namespace cc {
13 11
14 EffectNode::EffectNode() 12 EffectNode::EffectNode()
15 : id(EffectTree::kInvalidNodeId), 13 : id(EffectTree::kInvalidNodeId),
16 parent_id(EffectTree::kInvalidNodeId), 14 parent_id(EffectTree::kInvalidNodeId),
17 owning_layer_id(Layer::INVALID_ID), 15 owning_layer_id(Layer::INVALID_ID),
18 opacity(1.f), 16 opacity(1.f),
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 value->SetBoolean("effect_changed", effect_changed); 84 value->SetBoolean("effect_changed", effect_changed);
87 value->SetInteger("num_copy_requests_in_subtree", 85 value->SetInteger("num_copy_requests_in_subtree",
88 num_copy_requests_in_subtree); 86 num_copy_requests_in_subtree);
89 value->SetInteger("transform_id", transform_id); 87 value->SetInteger("transform_id", transform_id);
90 value->SetInteger("clip_id", clip_id); 88 value->SetInteger("clip_id", clip_id);
91 value->SetInteger("target_id", target_id); 89 value->SetInteger("target_id", target_id);
92 value->SetInteger("mask_layer_id", mask_layer_id); 90 value->SetInteger("mask_layer_id", mask_layer_id);
93 } 91 }
94 92
95 } // namespace cc 93 } // namespace cc
OLDNEW
« no previous file with comments | « cc/trees/compositor_mode.h ('k') | cc/trees/layer_tree.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698