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

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

Issue 16896007: Timeline: add support for deferred canvas rasterization (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 6 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/inspector/InspectorController.cpp ('k') | Source/core/inspector/InspectorTimelineAgent.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/inspector/InspectorTimelineAgent.h
diff --git a/Source/core/inspector/InspectorTimelineAgent.h b/Source/core/inspector/InspectorTimelineAgent.h
index 2a35c564af61f63532e53df55646dbdfc7e856da..e56874332d9d20a6685f9c95efd9131eb6fdb803 100644
--- a/Source/core/inspector/InspectorTimelineAgent.h
+++ b/Source/core/inspector/InspectorTimelineAgent.h
@@ -155,6 +155,9 @@ public:
void willComposite();
void didComposite();
+ void willUpdateLayer(int layerId);
+ void didUpdateLayer();
+
bool willWriteHTML(Document*, unsigned startLine);
void didWriteHTML(unsigned endLine);
@@ -208,6 +211,8 @@ public:
virtual void didDecodeImage() OVERRIDE;
virtual void willResizeImage(bool shouldCache) OVERRIDE;
virtual void didResizeImage() OVERRIDE;
+ virtual void willRasterizeCanvas() OVERRIDE;
+ virtual void didRasterizeCanvas() OVERRIDE;
private:
friend class TimelineRecordStack;
@@ -232,6 +237,8 @@ private:
void sendEvent(PassRefPtr<InspectorObject>);
void appendRecord(PassRefPtr<InspectorObject> data, const String& type, bool captureCallStack, Frame*);
void pushCurrentRecord(PassRefPtr<InspectorObject>, const String& type, bool captureCallStack, Frame*, bool hasLowLevelDetails = false);
+ void enablePlatformInstrumentation();
+ void disablePlatformInstrumentation();
void setDOMCounters(TypeBuilder::Timeline::TimelineEvent* record);
void setNativeHeapStatistics(TypeBuilder::Timeline::TimelineEvent* record);
« no previous file with comments | « Source/core/inspector/InspectorController.cpp ('k') | Source/core/inspector/InspectorTimelineAgent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698