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

Unified Diff: Source/core/timing/SharedWorkerPerformance.cpp

Issue 1212643004: [Oilpan] Apply RefCountedGarbageCollectedEventTarget on AbstractWorker (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove some redundant includes Created 5 years, 4 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
« no previous file with comments | « Source/core/timing/SharedWorkerPerformance.h ('k') | Source/core/workers/AbstractWorker.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/timing/SharedWorkerPerformance.cpp
diff --git a/Source/core/timing/SharedWorkerPerformance.cpp b/Source/core/timing/SharedWorkerPerformance.cpp
index f16c108fcec99b3fd2a725dfb2a166c19fc39130..38aabe4e6987eee91effedb6756d3d711324e49a 100644
--- a/Source/core/timing/SharedWorkerPerformance.cpp
+++ b/Source/core/timing/SharedWorkerPerformance.cpp
@@ -50,10 +50,10 @@ const char* SharedWorkerPerformance::supplementName()
SharedWorkerPerformance& SharedWorkerPerformance::from(SharedWorker& sharedWorker)
{
- SharedWorkerPerformance* supplement = static_cast<SharedWorkerPerformance*>(WillBeHeapSupplement<SharedWorker>::from(sharedWorker, supplementName()));
+ SharedWorkerPerformance* supplement = static_cast<SharedWorkerPerformance*>(HeapSupplement<SharedWorker>::from(sharedWorker, supplementName()));
if (!supplement) {
supplement = new SharedWorkerPerformance();
- provideTo(sharedWorker, supplementName(), adoptPtrWillBeNoop(supplement));
+ provideTo(sharedWorker, supplementName(), supplement);
}
return *supplement;
}
@@ -76,4 +76,3 @@ double SharedWorkerPerformance::getWorkerStart(ExecutionContext* context, Shared
}
} // namespace blink
-
« no previous file with comments | « Source/core/timing/SharedWorkerPerformance.h ('k') | Source/core/workers/AbstractWorker.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698