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

Unified Diff: src/extensions/statistics-extension.cc

Issue 15012016: small misspelling fixes. (Closed) Base URL: http://v8.googlecode.com/svn/trunk/
Patch Set: Created 7 years, 7 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 | « src/deoptimizer.cc ('k') | src/heap.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/extensions/statistics-extension.cc
===================================================================
--- src/extensions/statistics-extension.cc (revision 14601)
+++ src/extensions/statistics-extension.cc (working copy)
@@ -108,37 +108,37 @@
AddNumber(result, heap->new_space()->Available(),
"new_space_available_bytes");
AddNumber(result, heap->new_space()->CommittedMemory(),
- "new_space_commited_bytes");
+ "new_space_committed_bytes");
AddNumber(result, heap->old_pointer_space()->Size(),
"old_pointer_space_live_bytes");
AddNumber(result, heap->old_pointer_space()->Available(),
"old_pointer_space_available_bytes");
AddNumber(result, heap->old_pointer_space()->CommittedMemory(),
- "old_pointer_space_commited_bytes");
+ "old_pointer_space_committed_bytes");
AddNumber(result, heap->old_data_space()->Size(),
"old_data_space_live_bytes");
AddNumber(result, heap->old_data_space()->Available(),
"old_data_space_available_bytes");
AddNumber(result, heap->old_data_space()->CommittedMemory(),
- "old_data_space_commited_bytes");
+ "old_data_space_committed_bytes");
AddNumber(result, heap->code_space()->Size(),
"code_space_live_bytes");
AddNumber(result, heap->code_space()->Available(),
"code_space_available_bytes");
AddNumber(result, heap->code_space()->CommittedMemory(),
- "code_space_commited_bytes");
+ "code_space_committed_bytes");
AddNumber(result, heap->cell_space()->Size(),
"cell_space_live_bytes");
AddNumber(result, heap->cell_space()->Available(),
"cell_space_available_bytes");
AddNumber(result, heap->cell_space()->CommittedMemory(),
- "cell_space_commited_bytes");
+ "cell_space_committed_bytes");
AddNumber(result, heap->lo_space()->Size(),
"lo_space_live_bytes");
AddNumber(result, heap->lo_space()->Available(),
"lo_space_available_bytes");
AddNumber(result, heap->lo_space()->CommittedMemory(),
- "lo_space_commited_bytes");
+ "lo_space_committed_bytes");
AddNumber(result, heap->amount_of_external_allocated_memory(),
"amount_of_external_allocated_memory");
return result;
« no previous file with comments | « src/deoptimizer.cc ('k') | src/heap.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698