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

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

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 | « no previous file | Source/core/timing/SharedWorkerPerformance.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/timing/SharedWorkerPerformance.h
diff --git a/Source/core/timing/SharedWorkerPerformance.h b/Source/core/timing/SharedWorkerPerformance.h
index 70dd9cc91c70939eede02b94459fbe5c56e44576..e049ad968f89ed62bf2e470eec47284df00412b5 100644
--- a/Source/core/timing/SharedWorkerPerformance.h
+++ b/Source/core/timing/SharedWorkerPerformance.h
@@ -38,15 +38,15 @@ namespace blink {
class ExecutionContext;
class SharedWorker;
-class SharedWorkerPerformance final : public NoBaseWillBeGarbageCollected<SharedWorkerPerformance>, public WillBeHeapSupplement<SharedWorker> {
- WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(SharedWorkerPerformance);
+class SharedWorkerPerformance final : public GarbageCollected<SharedWorkerPerformance>, public HeapSupplement<SharedWorker> {
+ USING_GARBAGE_COLLECTED_MIXIN(SharedWorkerPerformance);
public:
static SharedWorkerPerformance& from(SharedWorker&);
static double workerStart(ExecutionContext*, SharedWorker&);
double getWorkerStart(ExecutionContext*, SharedWorker&) const;
- DEFINE_INLINE_VIRTUAL_TRACE() { WillBeHeapSupplement<SharedWorker>::trace(visitor); }
+ DEFINE_INLINE_VIRTUAL_TRACE() { HeapSupplement<SharedWorker>::trace(visitor); }
private:
SharedWorkerPerformance();
« no previous file with comments | « no previous file | Source/core/timing/SharedWorkerPerformance.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698