// Copyright 2015 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "base/trace_event/memory_dump_request_args.h" #include "base/notreached.h" namespace base { namespace trace_event { // static const char* MemoryDumpTypeToString(const MemoryDumpType& dump_type) { … } MemoryDumpType StringToMemoryDumpType(const std::string& str) { … } const char* MemoryDumpLevelOfDetailToString( const MemoryDumpLevelOfDetail& level_of_detail) { … } MemoryDumpLevelOfDetail StringToMemoryDumpLevelOfDetail( const std::string& str) { … } } // namespace trace_event } // namespace base