Index: third_party/WebKit/Source/web/tests/CompositorWorkerTest.cpp |
diff --git a/third_party/WebKit/Source/web/tests/CompositorWorkerTest.cpp b/third_party/WebKit/Source/web/tests/CompositorWorkerTest.cpp |
index 2861c44a158a0b426d9d32050ef0ba849172b466..0ba6697dae6644ab7bb1d780547c5ba863ef65a1 100644 |
--- a/third_party/WebKit/Source/web/tests/CompositorWorkerTest.cpp |
+++ b/third_party/WebKit/Source/web/tests/CompositorWorkerTest.cpp |
@@ -326,7 +326,7 @@ TEST_P(CompositorWorkerTest, applyingMutationsMultipleProperties) { |
TransformationMatrix transformMatrix(11, 12, 13, 14, 21, 22, 23, 24, 31, 32, |
33, 34, 41, 42, 43, 44); |
std::unique_ptr<CompositorMutation> mutation = |
- wrapUnique(new CompositorMutation); |
+ WTF::wrapUnique(new CompositorMutation); |
mutation->setTransform(TransformationMatrix::toSkMatrix44(transformMatrix)); |
mutation->setOpacity(0.5); |
@@ -349,7 +349,7 @@ TEST_P(CompositorWorkerTest, applyingMutationsMultipleProperties) { |
} |
// Verify that updating one property does not impact others |
- mutation = wrapUnique(new CompositorMutation); |
+ mutation = WTF::wrapUnique(new CompositorMutation); |
mutation->setOpacity(0.8); |
proxiedElement->updateFromCompositorMutation(*mutation); |