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

Unified Diff: third_party/WebKit/Source/platform/MemoryCacheDumpProvider.cpp

Issue 2028483002: Remove abstract classes for memory dumper (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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
Index: third_party/WebKit/Source/platform/MemoryCacheDumpProvider.cpp
diff --git a/third_party/WebKit/Source/platform/MemoryCacheDumpProvider.cpp b/third_party/WebKit/Source/platform/MemoryCacheDumpProvider.cpp
index 025f84a1e0119eb69892c00721d9248f68f5f185..e4d7bd5aeecc2271777beb0dfd6f0fce02a751d6 100644
--- a/third_party/WebKit/Source/platform/MemoryCacheDumpProvider.cpp
+++ b/third_party/WebKit/Source/platform/MemoryCacheDumpProvider.cpp
@@ -4,8 +4,6 @@
#include "platform/MemoryCacheDumpProvider.h"
-#include "platform/web_process_memory_dump_impl.h"
-
namespace blink {
DEFINE_TRACE(MemoryCacheDumpClient)
@@ -37,7 +35,7 @@ bool MemoryCacheDumpProvider::OnMemoryDump(const base::trace_event::MemoryDumpAr
return false;
}
- WebProcessMemoryDumpImpl dump(args.level_of_detail, memoryDump);
+ WebProcessMemoryDump dump(args.level_of_detail, memoryDump);
return m_client->onMemoryDump(level, &dump);
}
« no previous file with comments | « third_party/WebKit/Source/platform/MemoryCacheDumpProvider.h ('k') | third_party/WebKit/Source/platform/PurgeableVector.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698