1 // Copyright 2023 The Chromium Authors 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 #include "base/profiler/native_unwinder_android_memory_regions_map_impl.h" 6 7 namespace base { 8 NativeUnwinderAndroidMemoryRegionsMapImpl:: NativeUnwinderAndroidMemoryRegionsMapImpl(std::unique_ptr<unwindstack::Maps> maps,std::unique_ptr<unwindstack::Memory> memory)9 NativeUnwinderAndroidMemoryRegionsMapImpl( 10 std::unique_ptr<unwindstack::Maps> maps, 11 std::unique_ptr<unwindstack::Memory> memory) 12 : maps_(std::move(maps)), memory_(std::move(memory)) {} 13 14 NativeUnwinderAndroidMemoryRegionsMapImpl:: 15 ~NativeUnwinderAndroidMemoryRegionsMapImpl() = default; 16 } // namespace base 17