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

Unified Diff: Source/WebCore/inspector/front-end/TimelinePanel.js

Issue 8018012: Merge 95401 - Web Inspector: chromium-win: "Save timeline data" does nothing. (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/874/
Patch Set: Created 9 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 | « no previous file | Source/WebCore/inspector/front-end/utilities.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/WebCore/inspector/front-end/TimelinePanel.js
===================================================================
--- Source/WebCore/inspector/front-end/TimelinePanel.js (revision 95840)
+++ Source/WebCore/inspector/front-end/TimelinePanel.js (working copy)
@@ -1350,7 +1350,8 @@
records[records.length - 1] = records[records.length - 1] + "]";
var now= new Date();
- InspectorFrontendHost.saveAs("TimelineRawData-" + now.toRFC3339() + ".json", records.join(",\n"));
+ var suggestedFileName = "TimelineRawData-" + now.toISO8601Compact() + ".json";
+ InspectorFrontendHost.saveAs(suggestedFileName, records.join(",\n"));
},
_reset: function()
« no previous file with comments | « no previous file | Source/WebCore/inspector/front-end/utilities.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698