| Index: cc/trees/layer_tree_host_common_unittest.cc
|
| diff --git a/cc/trees/layer_tree_host_common_unittest.cc b/cc/trees/layer_tree_host_common_unittest.cc
|
| index 17dd4a849574e04fb09a2116df98ac1601adb7d1..83e6800e96c048031ebf5fde0339c511a8162b43 100644
|
| --- a/cc/trees/layer_tree_host_common_unittest.cc
|
| +++ b/cc/trees/layer_tree_host_common_unittest.cc
|
| @@ -4,6 +4,7 @@
|
|
|
| #include "cc/trees/layer_tree_host_common.h"
|
|
|
| +#include <algorithm>
|
| #include <set>
|
|
|
| #include "cc/animation/layer_animation_controller.h"
|
| @@ -7505,7 +7506,7 @@ TEST_F(LayerTreeHostCommonTest, DoNotClobberSorting) {
|
| scroll_parent_clip->SetMasksToBounds(true);
|
|
|
| scroll_child->SetScrollParent(scroll_parent.get());
|
| - scoped_ptr<std::set<LayerImpl*> > scroll_children(new std::set<LayerImpl*>);
|
| + scoped_ptr<std::set<LayerImpl*>> scroll_children(new std::set<LayerImpl*>);
|
| scroll_children->insert(scroll_child.get());
|
| scroll_parent->SetScrollChildren(scroll_children.release());
|
|
|
|
|