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

Unified Diff: runtime/vm/malloc_hooks_unsupported.cc

Issue 2974233002: VM: Re-format to use at most one newline between functions (Closed)
Patch Set: Rebase and merge Created 3 years, 5 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 | « runtime/vm/malloc_hooks_test.cc ('k') | runtime/vm/megamorphic_cache_table.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/malloc_hooks_unsupported.cc
diff --git a/runtime/vm/malloc_hooks_unsupported.cc b/runtime/vm/malloc_hooks_unsupported.cc
index 561a3aef035b7c8e1fdcbad001cfbf5e7af020c3..a1e3634aec83562d5946d1a6cd5b1550dcb5db8c 100644
--- a/runtime/vm/malloc_hooks_unsupported.cc
+++ b/runtime/vm/malloc_hooks_unsupported.cc
@@ -15,52 +15,42 @@ void MallocHooks::InitOnce() {
// Do nothing.
}
-
void MallocHooks::TearDown() {
// Do nothing.
}
-
bool MallocHooks::ProfilingEnabled() {
return false;
}
-
bool MallocHooks::stack_trace_collection_enabled() {
return false;
}
-
void MallocHooks::set_stack_trace_collection_enabled(bool enabled) {
// Do nothing.
}
-
void MallocHooks::ResetStats() {
// Do nothing.
}
-
bool MallocHooks::Active() {
return false;
}
-
void MallocHooks::PrintToJSONObject(JSONObject* jsobj) {
// Do nothing.
}
-
Sample* MallocHooks::GetSample(const void* ptr) {
return NULL;
}
-
intptr_t MallocHooks::allocation_count() {
return 0;
}
-
intptr_t MallocHooks::heap_allocated_memory_in_bytes() {
return 0;
}
« no previous file with comments | « runtime/vm/malloc_hooks_test.cc ('k') | runtime/vm/megamorphic_cache_table.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698