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

Unified Diff: sql/connection.cc

Issue 2545173002: [tracing] Remove MemoryAllocatorDump::process_memory_dump (Closed)
Patch Set: Fix include. Created 4 years 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 | « sql/connection.h ('k') | sql/connection_memory_dump_provider.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sql/connection.cc
diff --git a/sql/connection.cc b/sql/connection.cc
index a02b76423ae637762d45dbc814e1b202172366d5..d220c8e8d78906aad8f9064bd752ea811ec43cf6 100644
--- a/sql/connection.cc
+++ b/sql/connection.cc
@@ -2044,10 +2044,10 @@ bool Connection::IntegrityCheckHelper(
return ret;
}
-bool Connection::ReportMemoryUsage(
- base::trace_event::MemoryAllocatorDump* mad) {
+bool Connection::ReportMemoryUsage(base::trace_event::ProcessMemoryDump* pmd,
+ const std::string& dump_name) {
return memory_dump_provider_ &&
- memory_dump_provider_->ReportMemoryUsage(mad);
+ memory_dump_provider_->ReportMemoryUsage(pmd, dump_name);
}
base::TimeTicks TimeSource::Now() {
« no previous file with comments | « sql/connection.h ('k') | sql/connection_memory_dump_provider.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698