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

Unified Diff: Source/core/inspector/InspectorTraceEvents.h

Issue 1317533002: Sibling invalidation sets (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: sibling-inserted 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
Index: Source/core/inspector/InspectorTraceEvents.h
diff --git a/Source/core/inspector/InspectorTraceEvents.h b/Source/core/inspector/InspectorTraceEvents.h
index c467dfcc5d0856db6576bee972d700716d6d322b..ec25459b7304b4231efaf8f804d80848398355f3 100644
--- a/Source/core/inspector/InspectorTraceEvents.h
+++ b/Source/core/inspector/InspectorTraceEvents.h
@@ -44,6 +44,8 @@ class TracedValue;
class WorkerThread;
class XMLHttpRequest;
+using InvalidationSetVector = WillBeHeapVector<RefPtrWillBeMember<DescendantInvalidationSet>, 8>;
+
class InspectorLayoutEvent {
public:
static PassRefPtr<TraceEvent::ConvertableToTraceFormat> beginData(FrameView*);
@@ -93,7 +95,7 @@ public:
static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(Element&, const char* reason);
static PassRefPtr<TraceEvent::ConvertableToTraceFormat> selectorPart(Element&, const char* reason, const DescendantInvalidationSet&, const String&);
- static PassRefPtr<TraceEvent::ConvertableToTraceFormat> invalidationList(Element&, const WillBeHeapVector<RefPtrWillBeMember<DescendantInvalidationSet> >&);
+ static PassRefPtr<TraceEvent::ConvertableToTraceFormat> invalidationList(Element&, const InvalidationSetVector&);
private:
static PassRefPtr<TracedValue> fillCommonPart(Element&, const char* reason);

Powered by Google App Engine
This is Rietveld 408576698