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

Side by Side Diff: base/trace_event/trace_event_memory_overhead.cc

Issue 2476493003: Remove FundamentalValue
Patch Set: Fix Created 4 years, 1 month 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 unified diff | Download patch
« no previous file with comments | « base/trace_event/trace_event_argument_unittest.cc ('k') | base/values.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "base/trace_event/trace_event_memory_overhead.h" 5 #include "base/trace_event/trace_event_memory_overhead.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 8
9 #include "base/bits.h" 9 #include "base/bits.h"
10 #include "base/memory/ref_counted_memory.h" 10 #include "base/memory/ref_counted_memory.h"
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 Add("RefCountedString", sizeof(RefCountedString)); 66 Add("RefCountedString", sizeof(RefCountedString));
67 AddString(str.data()); 67 AddString(str.data());
68 } 68 }
69 69
70 void TraceEventMemoryOverhead::AddValue(const Value& value) { 70 void TraceEventMemoryOverhead::AddValue(const Value& value) {
71 switch (value.GetType()) { 71 switch (value.GetType()) {
72 case Value::TYPE_NULL: 72 case Value::TYPE_NULL:
73 case Value::TYPE_BOOLEAN: 73 case Value::TYPE_BOOLEAN:
74 case Value::TYPE_INTEGER: 74 case Value::TYPE_INTEGER:
75 case Value::TYPE_DOUBLE: 75 case Value::TYPE_DOUBLE:
76 Add("FundamentalValue", sizeof(Value)); 76 Add("Value", sizeof(Value));
77 break; 77 break;
78 78
79 case Value::TYPE_STRING: { 79 case Value::TYPE_STRING: {
80 const StringValue* string_value = nullptr; 80 const StringValue* string_value = nullptr;
81 value.GetAsString(&string_value); 81 value.GetAsString(&string_value);
82 Add("StringValue", sizeof(StringValue)); 82 Add("StringValue", sizeof(StringValue));
83 AddString(string_value->GetString()); 83 AddString(string_value->GetString());
84 } break; 84 } break;
85 85
86 case Value::TYPE_BINARY: { 86 case Value::TYPE_BINARY: {
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
147 it.second.allocated_size_in_bytes); 147 it.second.allocated_size_in_bytes);
148 mad->AddScalar("resident_size", MemoryAllocatorDump::kUnitsBytes, 148 mad->AddScalar("resident_size", MemoryAllocatorDump::kUnitsBytes,
149 it.second.resident_size_in_bytes); 149 it.second.resident_size_in_bytes);
150 mad->AddScalar(MemoryAllocatorDump::kNameObjectCount, 150 mad->AddScalar(MemoryAllocatorDump::kNameObjectCount,
151 MemoryAllocatorDump::kUnitsObjects, it.second.count); 151 MemoryAllocatorDump::kUnitsObjects, it.second.count);
152 } 152 }
153 } 153 }
154 154
155 } // namespace trace_event 155 } // namespace trace_event
156 } // namespace base 156 } // namespace base
OLDNEW
« no previous file with comments | « base/trace_event/trace_event_argument_unittest.cc ('k') | base/values.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698