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

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: Unify the three invalidation trace event categories Created 6 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
« no previous file with comments | « Source/core/dom/Node.cpp ('k') | Source/core/inspector/InspectorTraceEvents.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/inspector/InspectorTraceEvents.h
diff --git a/Source/core/inspector/InspectorTraceEvents.h b/Source/core/inspector/InspectorTraceEvents.h
index a08fcf3cfdb34c215238c9877df24ff4e71153c3..10a6847b082d112be3f07dbffc217dfeca1be163 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 {
kouhei (in TOK) 2014/09/11 18:03:36 Can we rename this to InspectorStyleRecalcInvalida
+public:
+ static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(Node*);
+};
+
+class InspectorLayoutInvalidationTrackingEvent {
+public:
+ static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(const RenderObject*);
+};
+
+class InspectorPaintInvalidationTrackingEvent {
+public:
+ static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(const RenderObject*, const RenderObject*);
+};
+
class InspectorSendRequestEvent {
public:
static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(unsigned long identifier, LocalFrame*, const ResourceRequest&);
« no previous file with comments | « Source/core/dom/Node.cpp ('k') | Source/core/inspector/InspectorTraceEvents.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698