Commit f1ff027d authored by alexeif@chromium.org's avatar alexeif@chromium.org

Fix formatting.

TBR=mnaganov@chromium.org

Review URL: https://chromiumcodereview.appspot.com/10356075

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@11534 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 159ee25b
...@@ -931,9 +931,8 @@ void ProfileGenerator::RecordTickSample(const TickSample& sample) { ...@@ -931,9 +931,8 @@ void ProfileGenerator::RecordTickSample(const TickSample& sample) {
} }
HeapGraphEdge::HeapGraphEdge( HeapGraphEdge::HeapGraphEdge(Type type, const char* name, int from, int to)
Type type, const char* name, int from, int to) : : type_(type),
type_(type),
from_index_(from), from_index_(from),
to_index_(to), to_index_(to),
name_(name) { name_(name) {
...@@ -944,8 +943,8 @@ HeapGraphEdge::HeapGraphEdge( ...@@ -944,8 +943,8 @@ HeapGraphEdge::HeapGraphEdge(
} }
HeapGraphEdge::HeapGraphEdge(Type type, int index, int from, int to) : HeapGraphEdge::HeapGraphEdge(Type type, int index, int from, int to)
type_(type), : type_(type),
from_index_(from), from_index_(from),
to_index_(to), to_index_(to),
index_(index) { index_(index) {
...@@ -964,8 +963,8 @@ HeapEntry::HeapEntry(HeapSnapshot* snapshot, ...@@ -964,8 +963,8 @@ HeapEntry::HeapEntry(HeapSnapshot* snapshot,
Type type, Type type,
const char* name, const char* name,
SnapshotObjectId id, SnapshotObjectId id,
int self_size) : int self_size)
painted_(false), : painted_(false),
user_reachable_(false), user_reachable_(false),
dominator_(kNoEntry), dominator_(kNoEntry),
type_(type), type_(type),
...@@ -1275,7 +1274,7 @@ void HeapSnapshot::Print(int max_depth) { ...@@ -1275,7 +1274,7 @@ void HeapSnapshot::Print(int max_depth) {
template<typename T, class P> template<typename T, class P>
static size_t GetMemoryUsedByList(const List<T,P>& list) { static size_t GetMemoryUsedByList(const List<T, P>& list) {
return list.capacity() * sizeof(T); return list.capacity() * sizeof(T);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment