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

Unified Diff: tools/perf/measurements/endure.py

Issue 24179002: Endure: spelling (commited->committed) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/perf/measurements/endure.py
diff --git a/tools/perf/measurements/endure.py b/tools/perf/measurements/endure.py
index 930d628299c18146a58a65e144563e0ad476a71d..58a8cfa68afa7054b3397821c29e57e06ceb89ac 100644
--- a/tools/perf/measurements/endure.py
+++ b/tools/perf/measurements/endure.py
@@ -8,7 +8,7 @@ from telemetry.page import page_measurement
import optparse
import time
-_V8_BYTES_COMMITED = [
+_V8_BYTES_COMMITTED = [
'V8.MemoryNewSpaceBytesCommitted',
'V8.MemoryOldPointerSpaceBytesCommitted',
'V8.MemoryOldDataSpaceBytesCommitted',
@@ -108,13 +108,13 @@ class Endure(page_measurement.PageMeasurement):
'KB', renderer_vm)
# V8 stats
- v8_bytes_commited = v8_object_stats.V8ObjectStatsMetric.GetV8StatsTable(
- tab, _V8_BYTES_COMMITED)
- v8_bytes_commited = sum(v8_bytes_commited.values()) / 1024.0
- self._SaveToResults(results, 'V8BytesCommited_X',
+ v8_bytes_committed = v8_object_stats.V8ObjectStatsMetric.GetV8StatsTable(
+ tab, _V8_BYTES_COMMITTED)
+ v8_bytes_committed = sum(v8_bytes_committed.values()) / 1024.0
+ self._SaveToResults(results, 'V8BytesCommitted_X',
'seconds', elapsed_time)
- self._SaveToResults(results, 'V8BytesCommited_Y',
- 'KB', v8_bytes_commited)
+ self._SaveToResults(results, 'V8BytesCommitted_Y',
+ 'KB', v8_bytes_committed)
v8_bytes_used = v8_object_stats.V8ObjectStatsMetric.GetV8StatsTable(
tab, _V8_BYTES_USED)
« 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