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

Unified Diff: Source/modules/compositorworker/CompositorWorkerMessagingProxy.cpp

Issue 1041053005: Oilpan: fix WorkerThreadStartupData finalization handling. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: add comment clarifying use of CrossThreadPersistent<> Created 5 years, 9 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: Source/modules/compositorworker/CompositorWorkerMessagingProxy.cpp
diff --git a/Source/modules/compositorworker/CompositorWorkerMessagingProxy.cpp b/Source/modules/compositorworker/CompositorWorkerMessagingProxy.cpp
index d5409dee6099eaed55789cf46b8c1b5229cd53c8..a25d731795142aaa6942f850e4503bf5ef59dddc 100644
--- a/Source/modules/compositorworker/CompositorWorkerMessagingProxy.cpp
+++ b/Source/modules/compositorworker/CompositorWorkerMessagingProxy.cpp
@@ -19,7 +19,7 @@ CompositorWorkerMessagingProxy::~CompositorWorkerMessagingProxy()
{
}
-PassRefPtr<WorkerThread> CompositorWorkerMessagingProxy::createWorkerThread(double originTime, PassOwnPtrWillBeRawPtr<WorkerThreadStartupData> startupData)
+PassRefPtr<WorkerThread> CompositorWorkerMessagingProxy::createWorkerThread(double originTime, PassOwnPtr<WorkerThreadStartupData> startupData)
{
return CompositorWorkerThread::create(loaderProxy(), workerObjectProxy(), originTime, startupData);
}

Powered by Google App Engine
This is Rietveld 408576698