frame.cc 413 B

1234567891011121314
  1. // Copyright 2019 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #include "base/profiler/frame.h"
  5. namespace base {
  6. Frame::Frame(uintptr_t instruction_pointer, const ModuleCache::Module* module)
  7. : instruction_pointer(instruction_pointer), module(module) {}
  8. Frame::~Frame() = default;
  9. } // namespace base