| Index: base/trace_event/memory_allocator_dump_unittest.cc
|
| diff --git a/base/trace_event/memory_allocator_dump_unittest.cc b/base/trace_event/memory_allocator_dump_unittest.cc
|
| index 85b98d65511ed556bbdb27679c65038c497a5266..0c1417380227595abc37e8482377ddd8062014fd 100644
|
| --- a/base/trace_event/memory_allocator_dump_unittest.cc
|
| +++ b/base/trace_event/memory_allocator_dump_unittest.cc
|
| @@ -21,7 +21,8 @@ namespace {
|
|
|
| class FakeMemoryAllocatorDumpProvider : public MemoryDumpProvider {
|
| public:
|
| - bool OnMemoryDump(ProcessMemoryDump* pmd) override {
|
| + bool OnMemoryDump(const MemoryDumpArgs& args,
|
| + ProcessMemoryDump* pmd) override {
|
| MemoryAllocatorDump* root_heap =
|
| pmd->CreateAllocatorDump("foobar_allocator");
|
|
|
| @@ -125,8 +126,9 @@ TEST(MemoryAllocatorDumpTest, GuidGeneration) {
|
| TEST(MemoryAllocatorDumpTest, DumpIntoProcessMemoryDump) {
|
| FakeMemoryAllocatorDumpProvider fmadp;
|
| ProcessMemoryDump pmd(make_scoped_refptr(new MemoryDumpSessionState()));
|
| + MemoryDumpArgs dump_args = {MemoryDumpArgs::LEVEL_OF_DETAIL_HIGH};
|
|
|
| - fmadp.OnMemoryDump(&pmd);
|
| + fmadp.OnMemoryDump(dump_args, &pmd);
|
|
|
| ASSERT_EQ(3u, pmd.allocator_dumps().size());
|
|
|
|
|