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

Unified Diff: chrome/browser/resources/net_internals/timeline_view.js

Issue 9582020: Fix the disk cache timeline view entries. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 10 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/net_internals/timeline_view.js
===================================================================
--- chrome/browser/resources/net_internals/timeline_view.js (revision 124489)
+++ chrome/browser/resources/net_internals/timeline_view.js (working copy)
@@ -214,10 +214,12 @@
LogEventType.UDP_BYTES_SENT),
TimelineView.BYTES_SENT_ID);
- this.addDataSeries_(new DiskCacheTransferRateDataSeries(),
+ this.addDataSeries_(new DiskCacheTransferRateDataSeries(
+ LogEventType.ENTRY_READ_DATA),
TimelineView.DISK_CACHE_BYTES_READ_ID);
- this.addDataSeries_(new DiskCacheTransferRateDataSeries(),
+ this.addDataSeries_(new DiskCacheTransferRateDataSeries(
+ LogEventType.ENTRY_WRITE_DATA),
TimelineView.DISK_CACHE_BYTES_WRITTEN_ID);
this.graphView_.setDataSeries(this.dataSeries_);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698