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

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

Issue 465223002: [ Do not submit ] Prototype for invalidation analysis Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix multiple paint bug, fix bug where nodes did not linkify properly, minor cleanups Created 6 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 a08fcf3cfdb34c215238c9877df24ff4e71153c3..254814338f99dd727995b1394b90f56d7ab6d82b 100644
--- a/Source/core/inspector/InspectorTraceEvents.h
+++ b/Source/core/inspector/InspectorTraceEvents.h
@@ -20,6 +20,7 @@ class GraphicsLayer;
class KURL;
class LayoutRect;
class LocalFrame;
+class Node;
class RenderObject;
class RenderImage;
class ResourceRequest;
@@ -34,6 +35,21 @@ public:
static PassRefPtr<TraceEvent::ConvertableToTraceFormat> endData(RenderObject* rootForThisLayout);
};
+class InspectorStyleInvalidationTrackingEvent {
+public:
+ static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(Node*);
+};
+
+class InspectorLayoutInvalidationTrackingEvent {
+public:
+ static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(RenderObject*);
+};
+
+class InspectorPaintInvalidationTrackingEvent {
+public:
+ static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(RenderObject*);
+};
+
class InspectorSendRequestEvent {
public:
static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(unsigned long identifier, LocalFrame*, const ResourceRequest&);

Powered by Google App Engine
This is Rietveld 408576698