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

Unified Diff: third_party/WebKit/Source/modules/compositorworker/AnimationWorkletThreadTest.cpp

Issue 2846843002: [blink] Unique pointers in Platform.h (Closed)
Patch Set: fix compilation (and again) Created 3 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/modules/compositorworker/AnimationWorkletThreadTest.cpp
diff --git a/third_party/WebKit/Source/modules/compositorworker/AnimationWorkletThreadTest.cpp b/third_party/WebKit/Source/modules/compositorworker/AnimationWorkletThreadTest.cpp
index 441a0fefbec375f6cd3b525de670ba7170b8e2c1..de6dc7b4dfaade4424c9663068c10a4387c85b5e 100644
--- a/third_party/WebKit/Source/modules/compositorworker/AnimationWorkletThreadTest.cpp
+++ b/third_party/WebKit/Source/modules/compositorworker/AnimationWorkletThreadTest.cpp
@@ -34,7 +34,7 @@ namespace {
class AnimationWorkletTestPlatform : public TestingPlatformSupport {
public:
AnimationWorkletTestPlatform()
- : thread_(WTF::WrapUnique(old_platform_->CreateThread("Compositor"))) {}
+ : thread_(old_platform_->CreateThread("Compositor")) {}
WebThread* CompositorThread() const override { return thread_.get(); }

Powered by Google App Engine
This is Rietveld 408576698