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

Unified Diff: components/sync/syncable/directory_backing_store.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 | « components/sync/syncable/directory_backing_store.h ('k') | sql/connection.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/sync/syncable/directory_backing_store.cc
diff --git a/components/sync/syncable/directory_backing_store.cc b/components/sync/syncable/directory_backing_store.cc
index bc73993513760ed1c4ea80d94fe493e3e991978f..3b26d0aaa765e8976694e8689e99c8afb431da11 100644
--- a/components/sync/syncable/directory_backing_store.cc
+++ b/components/sync/syncable/directory_backing_store.cc
@@ -1718,8 +1718,9 @@ bool DirectoryBackingStore::GetDatabasePageSize(int* page_size) {
}
bool DirectoryBackingStore::ReportMemoryUsage(
- base::trace_event::MemoryAllocatorDump* mad) {
- return db_ && db_->ReportMemoryUsage(mad);
+ base::trace_event::ProcessMemoryDump* pmd,
+ const std::string& dump_name) {
+ return db_ && db_->ReportMemoryUsage(pmd, dump_name);
}
bool DirectoryBackingStore::UpdatePageSizeIfNecessary() {
« no previous file with comments | « components/sync/syncable/directory_backing_store.h ('k') | sql/connection.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698