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

Unified Diff: Source/platform/graphics/LoggingCanvas.cpp

Issue 393123007: DevTools: Remove popover and add properties section for paint profiler log. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Made log tree lazy, fixed two bugs along the way. Created 6 years, 5 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/platform/graphics/LoggingCanvas.cpp
diff --git a/Source/platform/graphics/LoggingCanvas.cpp b/Source/platform/graphics/LoggingCanvas.cpp
index e581dc5ec961300cd2fec7dd9fcc4cd798a6acb9..1a5b956499036a02dea544fd2f48d699f411d03e 100644
--- a/Source/platform/graphics/LoggingCanvas.cpp
+++ b/Source/platform/graphics/LoggingCanvas.cpp
@@ -381,7 +381,7 @@ void LoggingCanvas::didConcat(const SkMatrix& matrix)
void LoggingCanvas::willSave()
{
AutoLogger logger(this);
- RefPtr<JSONObject> params = logger.logItemWithParams("save");
+ RefPtr<JSONObject> params = logger.logItem("save");
this->SkCanvas::willSave();
}

Powered by Google App Engine
This is Rietveld 408576698