blob: 16d6019795ac988ebaaed5ab2cde35dd616a6194 [file] [log] [blame]
Alexei Filippovbf5264fd32018-08-09 23:48:141// Copyright 2018 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
5#include "base/sampling_heap_profiler/module_cache.h"
6
7namespace base {
8
9// static
10ModuleCache::Module ModuleCache::CreateModuleForAddress(uintptr_t address) {
11 // TODO(alph): Implement it.
12 return Module();
13}
14
15} // namespace base