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

Unified Diff: third_party/WebKit/Source/platform/graphics/Canvas2DLayerBridgeTest.cpp

Issue 2850593002: Revert of [blink] Unique pointers in Platform.h (Closed)
Patch Set: 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 ecec9e6b48679b68839e849cfee560821e12e22a..332b0506b1e1f735fea213f95ba406ab637dff46 100644
--- a/third_party/WebKit/Source/platform/graphics/Canvas2DLayerBridgeTest.cpp
+++ b/third_party/WebKit/Source/platform/graphics/Canvas2DLayerBridgeTest.cpp
@@ -507,7 +507,7 @@
{
FakeGLES2Interface gl;
std::unique_ptr<WebThread> test_thread =
- Platform::Current()->CreateThread("TestThread");
+ WTF::WrapUnique(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 @@
{
FakeGLES2Interface gl;
std::unique_ptr<WebThread> test_thread =
- Platform::Current()->CreateThread("TestThread");
+ WTF::WrapUnique(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 @@
{
FakeGLES2Interface gl;
std::unique_ptr<WebThread> test_thread =
- Platform::Current()->CreateThread("TestThread");
+ WTF::WrapUnique(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 @@
{
FakeGLES2Interface gl;
std::unique_ptr<WebThread> test_thread =
- Platform::Current()->CreateThread("TestThread");
+ WTF::WrapUnique(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 @@
{
FakeGLES2Interface gl;
std::unique_ptr<WebThread> test_thread =
- Platform::Current()->CreateThread("TestThread");
+ WTF::WrapUnique(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 @@
{
FakeGLES2Interface gl;
std::unique_ptr<WebThread> test_thread =
- Platform::Current()->CreateThread("TestThread");
+ WTF::WrapUnique(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 @@
{
FakeGLES2Interface gl;
std::unique_ptr<WebThread> test_thread =
- Platform::Current()->CreateThread("TestThread");
+ WTF::WrapUnique(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 @@
{
FakeGLES2Interface gl;
std::unique_ptr<WebThread> test_thread =
- Platform::Current()->CreateThread("TestThread");
+ WTF::WrapUnique(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 @@
{
FakeGLES2Interface gl;
std::unique_ptr<WebThread> test_thread =
- Platform::Current()->CreateThread("TestThread");
+ WTF::WrapUnique(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 @@
{
FakeGLES2Interface gl;
std::unique_ptr<WebThread> test_thread =
- Platform::Current()->CreateThread("TestThread");
+ WTF::WrapUnique(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 @@
{
FakeGLES2Interface gl;
std::unique_ptr<WebThread> test_thread =
- Platform::Current()->CreateThread("TestThread");
+ WTF::WrapUnique(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 @@
{
FakeGLES2Interface gl;
std::unique_ptr<WebThread> test_thread =
- Platform::Current()->CreateThread("TestThread");
+ WTF::WrapUnique(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 @@
{
FakeGLES2Interface gl;
std::unique_ptr<WebThread> test_thread =
- Platform::Current()->CreateThread("TestThread");
+ WTF::WrapUnique(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 @@
{
FakeGLES2Interface gl;
std::unique_ptr<WebThread> test_thread =
- Platform::Current()->CreateThread("TestThread");
+ WTF::WrapUnique(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