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

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

Issue 1846913009: HeapSupplements are now just Supplements. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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: third_party/WebKit/Source/core/timing/SharedWorkerPerformance.h
diff --git a/third_party/WebKit/Source/core/timing/SharedWorkerPerformance.h b/third_party/WebKit/Source/core/timing/SharedWorkerPerformance.h
index e049ad968f89ed62bf2e470eec47284df00412b5..b02d24dfc8f30aa1c6869c4e7d13c9ca8f535e17 100644
--- a/third_party/WebKit/Source/core/timing/SharedWorkerPerformance.h
+++ b/third_party/WebKit/Source/core/timing/SharedWorkerPerformance.h
@@ -38,7 +38,7 @@ namespace blink {
class ExecutionContext;
class SharedWorker;
-class SharedWorkerPerformance final : public GarbageCollected<SharedWorkerPerformance>, public HeapSupplement<SharedWorker> {
+class SharedWorkerPerformance final : public GarbageCollected<SharedWorkerPerformance>, public Supplement<SharedWorker> {
USING_GARBAGE_COLLECTED_MIXIN(SharedWorkerPerformance);
public:
static SharedWorkerPerformance& from(SharedWorker&);
@@ -46,7 +46,7 @@ public:
static double workerStart(ExecutionContext*, SharedWorker&);
double getWorkerStart(ExecutionContext*, SharedWorker&) const;
- DEFINE_INLINE_VIRTUAL_TRACE() { HeapSupplement<SharedWorker>::trace(visitor); }
+ DEFINE_INLINE_VIRTUAL_TRACE() { Supplement<SharedWorker>::trace(visitor); }
private:
SharedWorkerPerformance();

Powered by Google App Engine
This is Rietveld 408576698