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

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: Invalidate descendants only Created 5 years, 3 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 62b9d77f9afea4f01d73231da2aad4fadb941842..bfdf4c8fd0082456c63d4088003b085b824385c3 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 {
STATIC_ONLY(InspectorLayoutEvent);
public:
@@ -97,7 +99,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