Alexei Filippov | bf5264fd3 | 2018-08-09 23:48:14 | [diff] [blame] | 1 | // 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 | |||||
7 | namespace base { | ||||
8 | |||||
9 | // static | ||||
10 | ModuleCache::Module ModuleCache::CreateModuleForAddress(uintptr_t address) { | ||||
11 | // TODO(alph): Implement it. | ||||
12 | return Module(); | ||||
13 | } | ||||
14 | |||||
15 | } // namespace base |