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

Unified Diff: third_party/WebKit/Source/platform/graphics/Canvas2DLayerBridgeTest.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/platform/graphics/Canvas2DLayerBridgeTest.cpp
diff --git a/third_party/WebKit/Source/platform/graphics/Canvas2DLayerBridgeTest.cpp b/third_party/WebKit/Source/platform/graphics/Canvas2DLayerBridgeTest.cpp
index 332b0506b1e1f735fea213f95ba406ab637dff46..ecec9e6b48679b68839e849cfee560821e12e22a 100644
--- a/third_party/WebKit/Source/platform/graphics/Canvas2DLayerBridgeTest.cpp
+++ b/third_party/WebKit/Source/platform/graphics/Canvas2DLayerBridgeTest.cpp
@@ -507,7 +507,7 @@ TEST_F(Canvas2DLayerBridgeTest, DISABLED_HibernationLifeCycle)
{
FakeGLES2Interface gl;
std::unique_ptr<WebThread> test_thread =
- WTF::WrapUnique(Platform::Current()->CreateThread("TestThread"));
+ Platform::Current()->CreateThread("TestThread");
// The Canvas2DLayerBridge has to be created on the thread that will use it
// to avoid WeakPtr thread check issues.
@@ -560,7 +560,7 @@ TEST_F(Canvas2DLayerBridgeTest, DISABLED_HibernationReEntry)
{
FakeGLES2Interface gl;
std::unique_ptr<WebThread> test_thread =
- WTF::WrapUnique(Platform::Current()->CreateThread("TestThread"));
+ Platform::Current()->CreateThread("TestThread");
// The Canvas2DLayerBridge has to be created on the thread that will use it
// to avoid WeakPtr thread check issues.
@@ -620,7 +620,7 @@ TEST_F(Canvas2DLayerBridgeTest,
{
FakeGLES2Interface gl;
std::unique_ptr<WebThread> test_thread =
- WTF::WrapUnique(Platform::Current()->CreateThread("TestThread"));
+ Platform::Current()->CreateThread("TestThread");
// The Canvas2DLayerBridge has to be created on the thread that will use it
// to avoid WeakPtr thread check issues.
@@ -699,7 +699,7 @@ TEST_F(Canvas2DLayerBridgeTest, DISABLED_BackgroundRenderingWhileHibernating)
{
FakeGLES2Interface gl;
std::unique_ptr<WebThread> test_thread =
- WTF::WrapUnique(Platform::Current()->CreateThread("TestThread"));
+ Platform::Current()->CreateThread("TestThread");
// The Canvas2DLayerBridge has to be created on the thread that will use it
// to avoid WeakPtr thread check issues.
@@ -764,7 +764,7 @@ TEST_F(
{
FakeGLES2Interface gl;
std::unique_ptr<WebThread> test_thread =
- WTF::WrapUnique(Platform::Current()->CreateThread("TestThread"));
+ Platform::Current()->CreateThread("TestThread");
// The Canvas2DLayerBridge has to be created on the thread that will use it
// to avoid WeakPtr thread check issues.
@@ -837,7 +837,7 @@ TEST_F(Canvas2DLayerBridgeTest,
{
FakeGLES2Interface gl;
std::unique_ptr<WebThread> test_thread =
- WTF::WrapUnique(Platform::Current()->CreateThread("TestThread"));
+ Platform::Current()->CreateThread("TestThread");
// The Canvas2DLayerBridge has to be created on the thread that will use it
// to avoid WeakPtr thread check issues.
@@ -908,7 +908,7 @@ TEST_F(Canvas2DLayerBridgeTest, DISABLED_TeardownWhileHibernating)
{
FakeGLES2Interface gl;
std::unique_ptr<WebThread> test_thread =
- WTF::WrapUnique(Platform::Current()->CreateThread("TestThread"));
+ Platform::Current()->CreateThread("TestThread");
// The Canvas2DLayerBridge has to be created on the thread that will use it
// to avoid WeakPtr thread check issues.
@@ -952,7 +952,7 @@ TEST_F(Canvas2DLayerBridgeTest, DISABLED_SnapshotWhileHibernating)
{
FakeGLES2Interface gl;
std::unique_ptr<WebThread> test_thread =
- WTF::WrapUnique(Platform::Current()->CreateThread("TestThread"));
+ Platform::Current()->CreateThread("TestThread");
// The Canvas2DLayerBridge has to be created on the thread that will use it
// to avoid WeakPtr thread check issues.
@@ -1015,7 +1015,7 @@ TEST_F(Canvas2DLayerBridgeTest, DISABLED_TeardownWhileHibernationIsPending)
{
FakeGLES2Interface gl;
std::unique_ptr<WebThread> test_thread =
- WTF::WrapUnique(Platform::Current()->CreateThread("TestThread"));
+ Platform::Current()->CreateThread("TestThread");
// The Canvas2DLayerBridge has to be created on the thread that will use it
// to avoid WeakPtr thread check issues.
@@ -1063,7 +1063,7 @@ TEST_F(Canvas2DLayerBridgeTest, DISABLED_HibernationAbortedDueToPendingTeardown)
{
FakeGLES2Interface gl;
std::unique_ptr<WebThread> test_thread =
- WTF::WrapUnique(Platform::Current()->CreateThread("TestThread"));
+ Platform::Current()->CreateThread("TestThread");
// The Canvas2DLayerBridge has to be created on the thread that will use it
// to avoid WeakPtr thread check issues.
@@ -1109,7 +1109,7 @@ TEST_F(Canvas2DLayerBridgeTest,
{
FakeGLES2Interface gl;
std::unique_ptr<WebThread> test_thread =
- WTF::WrapUnique(Platform::Current()->CreateThread("TestThread"));
+ Platform::Current()->CreateThread("TestThread");
// The Canvas2DLayerBridge has to be created on the thread that will use it
// to avoid WeakPtr thread check issues.
@@ -1155,7 +1155,7 @@ TEST_F(Canvas2DLayerBridgeTest, DISABLED_HibernationAbortedDueToLostContext)
{
FakeGLES2Interface gl;
std::unique_ptr<WebThread> test_thread =
- WTF::WrapUnique(Platform::Current()->CreateThread("TestThread"));
+ Platform::Current()->CreateThread("TestThread");
// The Canvas2DLayerBridge has to be created on the thread that will use it
// to avoid WeakPtr thread check issues.
@@ -1198,7 +1198,7 @@ TEST_F(Canvas2DLayerBridgeTest, DISABLED_PrepareMailboxWhileHibernating)
{
FakeGLES2Interface gl;
std::unique_ptr<WebThread> test_thread =
- WTF::WrapUnique(Platform::Current()->CreateThread("TestThread"));
+ Platform::Current()->CreateThread("TestThread");
// The Canvas2DLayerBridge has to be created on the thread that will use it
// to avoid WeakPtr thread check issues.
@@ -1247,7 +1247,7 @@ TEST_F(Canvas2DLayerBridgeTest, DISABLED_PrepareMailboxWhileBackgroundRendering)
{
FakeGLES2Interface gl;
std::unique_ptr<WebThread> test_thread =
- WTF::WrapUnique(Platform::Current()->CreateThread("TestThread"));
+ Platform::Current()->CreateThread("TestThread");
// The Canvas2DLayerBridge has to be created on the thread that will use it
// to avoid WeakPtr thread check issues.

Powered by Google App Engine
This is Rietveld 408576698