| Index: cc/TreeSynchronizerTest.cpp
|
| diff --git a/cc/TreeSynchronizerTest.cpp b/cc/TreeSynchronizerTest.cpp
|
| index 8d093d7b51b5b117b4fdf51f85ae21c40dfb1dfc..e307f2962a0e563941f649491e6a8a9c90e27ecc 100644
|
| --- a/cc/TreeSynchronizerTest.cpp
|
| +++ b/cc/TreeSynchronizerTest.cpp
|
| @@ -119,12 +119,12 @@ void expectTreesAreIdentical(LayerChromium* layer, CCLayerImpl* ccLayer, CCLayer
|
| expectTreesAreIdentical(layer->replicaLayer(), ccLayer->replicaLayer(), hostImpl);
|
|
|
| const Vector<RefPtr<LayerChromium> >& layerChildren = layer->children();
|
| - const Vector<OwnPtr<CCLayerImpl> >& ccLayerChildren = ccLayer->children();
|
| + const OwnPtrVector<CCLayerImpl>& ccLayerChildren = ccLayer->children();
|
|
|
| ASSERT_EQ(layerChildren.size(), ccLayerChildren.size());
|
|
|
| for (size_t i = 0; i < layerChildren.size(); ++i)
|
| - expectTreesAreIdentical(layerChildren[i].get(), ccLayerChildren[i].get(), hostImpl);
|
| + expectTreesAreIdentical(layerChildren[i].get(), ccLayerChildren[i], hostImpl);
|
| }
|
|
|
| // Attempts to synchronizes a null tree. This should not crash, and should
|
|
|