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

Unified Diff: content/browser/renderer_host/memory_benchmark_message_filter.cc

Issue 1469843002: Remove dependency on allocator from 'content' targets (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@unify_allocator1_2
Patch Set: Fix build Created 5 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 side-by-side diff with in-line comments
Download patch
Index: content/browser/renderer_host/memory_benchmark_message_filter.cc
diff --git a/content/browser/renderer_host/memory_benchmark_message_filter.cc b/content/browser/renderer_host/memory_benchmark_message_filter.cc
index 607325376f798e20f377379072837218366672d4..b4c26231cda45f3051c8163778cec3de108cf480 100644
--- a/content/browser/renderer_host/memory_benchmark_message_filter.cc
+++ b/content/browser/renderer_host/memory_benchmark_message_filter.cc
@@ -32,7 +32,7 @@ MemoryBenchmarkMessageFilter::~MemoryBenchmarkMessageFilter() {
void MemoryBenchmarkMessageFilter::OnHeapProfilerDump(
const std::string& reason) {
- ::HeapProfilerDump(reason.c_str());
+ base::allocator::HeapProfilerDump(reason.c_str());
}
} // namespace content

Powered by Google App Engine
This is Rietveld 408576698