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

Unified Diff: services/resource_coordinator/public/cpp/memory/memory_instrumentation_struct_traits.cc

Issue 2895083004: memory-infra: rename service folder to memory_instrumentation (Closed)
Patch Set: comments Created 3 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: services/resource_coordinator/public/cpp/memory/memory_instrumentation_struct_traits.cc
diff --git a/services/resource_coordinator/public/cpp/memory/memory_instrumentation_struct_traits.cc b/services/resource_coordinator/public/cpp/memory/memory_instrumentation_struct_traits.cc
deleted file mode 100644
index b581afef64c1785d86b97a5db824813375fba74e..0000000000000000000000000000000000000000
--- a/services/resource_coordinator/public/cpp/memory/memory_instrumentation_struct_traits.cc
+++ /dev/null
@@ -1,152 +0,0 @@
-// Copyright 2017 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "services/resource_coordinator/public/cpp/memory/memory_instrumentation_struct_traits.h"
-
-#include "base/trace_event/memory_dump_request_args.h"
-#include "base/trace_event/process_memory_totals.h"
-#include "mojo/common/common_custom_types_struct_traits.h"
-#include "services/resource_coordinator/public/interfaces/memory/memory_instrumentation.mojom.h"
-
-namespace mojo {
-
-// static
-memory_instrumentation::mojom::DumpType
-EnumTraits<memory_instrumentation::mojom::DumpType,
- base::trace_event::MemoryDumpType>::
- ToMojom(base::trace_event::MemoryDumpType type) {
- switch (type) {
- case base::trace_event::MemoryDumpType::PERIODIC_INTERVAL:
- return memory_instrumentation::mojom::DumpType::PERIODIC_INTERVAL;
- case base::trace_event::MemoryDumpType::EXPLICITLY_TRIGGERED:
- return memory_instrumentation::mojom::DumpType::EXPLICITLY_TRIGGERED;
- case base::trace_event::MemoryDumpType::PEAK_MEMORY_USAGE:
- return memory_instrumentation::mojom::DumpType::PEAK_MEMORY_USAGE;
- case base::trace_event::MemoryDumpType::SUMMARY_ONLY:
- return memory_instrumentation::mojom::DumpType::SUMMARY_ONLY;
- default:
- CHECK(false) << "Invalid type: " << static_cast<uint8_t>(type);
- // This should not be reached. Just return a random value.
- return memory_instrumentation::mojom::DumpType::PEAK_MEMORY_USAGE;
- }
-}
-
-// static
-bool EnumTraits<memory_instrumentation::mojom::DumpType,
- base::trace_event::MemoryDumpType>::
- FromMojom(memory_instrumentation::mojom::DumpType input,
- base::trace_event::MemoryDumpType* out) {
- switch (input) {
- case memory_instrumentation::mojom::DumpType::PERIODIC_INTERVAL:
- *out = base::trace_event::MemoryDumpType::PERIODIC_INTERVAL;
- break;
- case memory_instrumentation::mojom::DumpType::EXPLICITLY_TRIGGERED:
- *out = base::trace_event::MemoryDumpType::EXPLICITLY_TRIGGERED;
- break;
- case memory_instrumentation::mojom::DumpType::PEAK_MEMORY_USAGE:
- *out = base::trace_event::MemoryDumpType::PEAK_MEMORY_USAGE;
- break;
- case memory_instrumentation::mojom::DumpType::SUMMARY_ONLY:
- *out = base::trace_event::MemoryDumpType::SUMMARY_ONLY;
- break;
- default:
- NOTREACHED() << "Invalid type: " << static_cast<uint8_t>(input);
- return false;
- }
- return true;
-}
-
-// static
-memory_instrumentation::mojom::LevelOfDetail
-EnumTraits<memory_instrumentation::mojom::LevelOfDetail,
- base::trace_event::MemoryDumpLevelOfDetail>::
- ToMojom(base::trace_event::MemoryDumpLevelOfDetail level_of_detail) {
- switch (level_of_detail) {
- case base::trace_event::MemoryDumpLevelOfDetail::BACKGROUND:
- return memory_instrumentation::mojom::LevelOfDetail::BACKGROUND;
- case base::trace_event::MemoryDumpLevelOfDetail::LIGHT:
- return memory_instrumentation::mojom::LevelOfDetail::LIGHT;
- case base::trace_event::MemoryDumpLevelOfDetail::DETAILED:
- return memory_instrumentation::mojom::LevelOfDetail::DETAILED;
- default:
- CHECK(false) << "Invalid type: " << static_cast<uint8_t>(level_of_detail);
- // This should not be reached. Just return a random value.
- return memory_instrumentation::mojom::LevelOfDetail::BACKGROUND;
- }
-}
-
-// static
-bool EnumTraits<memory_instrumentation::mojom::LevelOfDetail,
- base::trace_event::MemoryDumpLevelOfDetail>::
- FromMojom(memory_instrumentation::mojom::LevelOfDetail input,
- base::trace_event::MemoryDumpLevelOfDetail* out) {
- switch (input) {
- case memory_instrumentation::mojom::LevelOfDetail::BACKGROUND:
- *out = base::trace_event::MemoryDumpLevelOfDetail::BACKGROUND;
- break;
- case memory_instrumentation::mojom::LevelOfDetail::LIGHT:
- *out = base::trace_event::MemoryDumpLevelOfDetail::LIGHT;
- break;
- case memory_instrumentation::mojom::LevelOfDetail::DETAILED:
- *out = base::trace_event::MemoryDumpLevelOfDetail::DETAILED;
- break;
- default:
- NOTREACHED() << "Invalid type: " << static_cast<uint8_t>(input);
- return false;
- }
- return true;
-}
-
-// static
-bool StructTraits<memory_instrumentation::mojom::RequestArgsDataView,
- base::trace_event::MemoryDumpRequestArgs>::
- Read(memory_instrumentation::mojom::RequestArgsDataView input,
- base::trace_event::MemoryDumpRequestArgs* out) {
- out->dump_guid = input.dump_guid();
- if (!input.ReadDumpType(&out->dump_type))
- return false;
- if (!input.ReadLevelOfDetail(&out->level_of_detail))
- return false;
- return true;
-}
-
-// static
-bool StructTraits<
- memory_instrumentation::mojom::PlatformPrivateFootprintDataView,
- base::trace_event::ProcessMemoryTotals::PlatformPrivateFootprint>::
- Read(
- memory_instrumentation::mojom::PlatformPrivateFootprintDataView input,
- base::trace_event::ProcessMemoryTotals::PlatformPrivateFootprint* out) {
- out->phys_footprint_bytes = input.phys_footprint_bytes();
- out->internal_bytes = input.internal_bytes();
- out->compressed_bytes = input.compressed_bytes();
- out->rss_anon_bytes = input.rss_anon_bytes();
- out->vm_swap_bytes = input.vm_swap_bytes();
- return true;
-}
-
-// static
-bool StructTraits<memory_instrumentation::mojom::ChromeMemDumpDataView,
- base::trace_event::MemoryDumpCallbackResult::ChromeMemDump>::
- Read(memory_instrumentation::mojom::ChromeMemDumpDataView input,
- base::trace_event::MemoryDumpCallbackResult::ChromeMemDump* out) {
- out->malloc_total_kb = input.malloc_total_kb();
- out->partition_alloc_total_kb = input.partition_alloc_total_kb();
- out->blink_gc_total_kb = input.blink_gc_total_kb();
- out->v8_total_kb = input.v8_total_kb();
- return true;
-}
-
-// static
-bool StructTraits<memory_instrumentation::mojom::OSMemDumpDataView,
- base::trace_event::MemoryDumpCallbackResult::OSMemDump>::
- Read(memory_instrumentation::mojom::OSMemDumpDataView input,
- base::trace_event::MemoryDumpCallbackResult::OSMemDump* out) {
- out->resident_set_kb = input.resident_set_kb();
- if (!input.ReadPlatformPrivateFootprint(&out->platform_private_footprint))
- return false;
- return true;
-}
-
-} // namespace mojo

Powered by Google App Engine
This is Rietveld 408576698