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

Unified Diff: src/heap-profiler.h

Issue 195102: Fix ARM build (gcc 3.3 failed to resolve types correctly) and constants names. (Closed)
Patch Set: Created 11 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 | src/heap-profiler.cc » ('j') | src/heap-profiler.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/heap-profiler.h
diff --git a/src/heap-profiler.h b/src/heap-profiler.h
index 32a424f347e2b03cb887b731c99d318fad444b2c..bb7ca33d7a72f4ec15f03427a1cdac4536c049d6 100644
--- a/src/heap-profiler.h
+++ b/src/heap-profiler.h
@@ -201,11 +201,11 @@ class ClustersCoarser BASE_EMBEDDED {
int DoProcess(JSObjectsClusterTree* tree);
int FillEqualityTree();
- static const int INITIAL_BACKREFS_LIST_CAPACITY = 2;
- static const int INITIAL_SIMILARITY_LIST_CAPACITY = 2000;
+ static const int kInitialBackrefsListCapacity = 2;
+ static const int kInitialSimilarityListCapacity = 2000;
// Number of passes for finding equivalents. Limits the length of paths
// that can be considered equivalent.
- static const int MAX_PASSES_COUNT = 10;
+ static const int kMaxPassesCount = 10;
ZoneScope zscope_;
SimilarityList simList_;
@@ -237,7 +237,7 @@ class RetainerHeapProfile BASE_EMBEDDED {
JSObjectsCluster Clusterize(Object* obj);
// Limit on the number of retainers to be printed per cluster.
- static const int MAX_RETAINERS_TO_PRINT = 50;
+ static const int kMaxRetainersToPrint = 50;
ZoneScope zscope_;
JSObjectsClusterTree retainers_tree_;
ClustersCoarser coarser_;
« no previous file with comments | « no previous file | src/heap-profiler.cc » ('j') | src/heap-profiler.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698