| OLD | NEW |
| 1 # Copyright 2017 The Chromium Authors. All rights reserved. | 1 # Copyright 2017 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 mojom = "//services/resource_coordinator/public/interfaces/memory/memory_instrum
entation.mojom" | 5 mojom = "//services/resource_coordinator/public/interfaces/memory/memory_instrum
entation.mojom" |
| 6 | 6 |
| 7 public_headers = [ | 7 public_headers = [ |
| 8 "//base/trace_event/memory_dump_request_args.h", | 8 "//base/trace_event/memory_dump_request_args.h", |
| 9 "//base/trace_event/process_memory_totals.h", | 9 "//base/trace_event/process_memory_totals.h", |
| 10 ] | 10 ] |
| 11 traits_headers = [ "//services/resource_coordinator/public/cpp/memory/memory_ins
trumentation_struct_traits.h" ] | 11 traits_headers = [ "//services/resource_coordinator/public/cpp/memory/memory_ins
trumentation_struct_traits.h" ] |
| 12 deps = [ | 12 deps = [ |
| 13 "//base", | 13 "//base", |
| 14 ] | 14 ] |
| 15 type_mappings = [ | 15 type_mappings = [ |
| 16 "memory_instrumentation.mojom.DumpType=base::trace_event::MemoryDumpType", | 16 "memory_instrumentation.mojom.DumpType=base::trace_event::MemoryDumpType", |
| 17 "memory_instrumentation.mojom.LevelOfDetail=base::trace_event::MemoryDumpLevel
OfDetail", | 17 "memory_instrumentation.mojom.LevelOfDetail=base::trace_event::MemoryDumpLevel
OfDetail", |
| 18 "memory_instrumentation.mojom.RequestArgs=base::trace_event::MemoryDumpRequest
Args", | 18 "memory_instrumentation.mojom.RequestArgs=base::trace_event::MemoryDumpRequest
Args", |
| 19 "memory_instrumentation.mojom.PlatformPrivateFootprint=base::trace_event::Proc
essMemoryTotals::PlatformPrivateFootprint", | 19 "memory_instrumentation.mojom.PlatformPrivateFootprint=base::trace_event::Proc
essMemoryTotals::PlatformPrivateFootprint", |
| 20 "memory_instrumentation.mojom.ChromeMemDump=base::trace_event::MemoryDumpCallb
ackResult::ChromeMemDump", | 20 "memory_instrumentation.mojom.ChromeMemDump=base::trace_event::MemoryDumpCallb
ackResult::ChromeMemDump", |
| 21 "memory_instrumentation.mojom.OSMemDump=base::trace_event::MemoryDumpCallbackR
esult::OSMemDump", | 21 "memory_instrumentation.mojom.OSMemDump=base::trace_event::MemoryDumpCallbackR
esult::OSMemDump", |
| 22 "memory_instrumentation.mojom.MemoryDumpCallbackResult=base::trace_event::Memo
ryDumpCallbackResult", | |
| 23 ] | 22 ] |
| OLD | NEW |