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

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

Issue 2406333002: Remove CrossThreadPersistent::release (Closed)
Patch Set: added comment Created 4 years, 2 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/CompositorWorkerGlobalScope.cpp
diff --git a/third_party/WebKit/Source/modules/compositorworker/CompositorWorkerGlobalScope.cpp b/third_party/WebKit/Source/modules/compositorworker/CompositorWorkerGlobalScope.cpp
index 18e21a1376538abe9402d9e53b659f152ccf6fe7..3281fdcf62cb0e5092e56ac4a1e2fa1e4933a208 100644
--- a/third_party/WebKit/Source/modules/compositorworker/CompositorWorkerGlobalScope.cpp
+++ b/third_party/WebKit/Source/modules/compositorworker/CompositorWorkerGlobalScope.cpp
@@ -23,7 +23,7 @@ CompositorWorkerGlobalScope* CompositorWorkerGlobalScope::create(
CompositorWorkerGlobalScope* context = new CompositorWorkerGlobalScope(
startupData->m_scriptURL, startupData->m_userAgent, thread, timeOrigin,
std::move(startupData->m_starterOriginPrivilegeData),
- startupData->m_workerClients.release());
+ startupData->m_workerClients);
context->applyContentSecurityPolicyFromVector(
*startupData->m_contentSecurityPolicyHeaders);
if (!startupData->m_referrerPolicy.isNull())

Powered by Google App Engine
This is Rietveld 408576698