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

Unified Diff: third_party/WebKit/Source/modules/webgl/WebGLRenderingContextBase.cpp

Issue 2859553002: 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/modules/webgl/WebGLRenderingContextBase.cpp
diff --git a/third_party/WebKit/Source/modules/webgl/WebGLRenderingContextBase.cpp b/third_party/WebKit/Source/modules/webgl/WebGLRenderingContextBase.cpp
index f75a01a7367165734a8e9d9ebee7dc25dffdab35..12a534b2f80de5677ba463f55bcf4bf6abdb3fcc 100644
--- a/third_party/WebKit/Source/modules/webgl/WebGLRenderingContextBase.cpp
+++ b/third_party/WebKit/Source/modules/webgl/WebGLRenderingContextBase.cpp
@@ -592,10 +592,10 @@
ContextProviderCreationInfo* creation_info,
WaitableEvent* waitable_event) {
ASSERT(IsMainThread());
- creation_info->created_context_provider =
+ creation_info->created_context_provider = WTF::WrapUnique(
Platform::Current()->CreateOffscreenGraphicsContext3DProvider(
creation_info->context_attributes, creation_info->url, 0,
- creation_info->gl_info);
+ creation_info->gl_info));
waitable_event->Signal();
}
@@ -659,9 +659,9 @@
const auto& url = canvas ? canvas->GetDocument().TopDocument().Url()
: ExecutionContext::From(script_state)->Url();
if (IsMainThread()) {
- context_provider =
+ context_provider = WTF::WrapUnique(
Platform::Current()->CreateOffscreenGraphicsContext3DProvider(
- context_attributes, url, 0, &gl_info);
+ context_attributes, url, 0, &gl_info));
} else {
context_provider =
CreateContextProviderOnWorkerThread(context_attributes, &gl_info, url);
@@ -7500,9 +7500,9 @@
const auto& url = host()->GetExecutionContextUrl();
if (IsMainThread()) {
- context_provider =
+ context_provider = WTF::WrapUnique(
Platform::Current()->CreateOffscreenGraphicsContext3DProvider(
- attributes, url, 0, &gl_info);
+ attributes, url, 0, &gl_info));
} else {
context_provider =
CreateContextProviderOnWorkerThread(attributes, &gl_info, url);

Powered by Google App Engine
This is Rietveld 408576698