• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright 2019 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/android/reached_code_profiler.h"
6 
7 namespace base {
8 namespace android {
9 
InitReachedCodeProfilerAtStartup(LibraryProcessType library_process_type)10 void InitReachedCodeProfilerAtStartup(LibraryProcessType library_process_type) {
11 }
12 
IsReachedCodeProfilerEnabled()13 bool IsReachedCodeProfilerEnabled() {
14   return false;
15 }
16 
IsReachedCodeProfilerSupported()17 bool IsReachedCodeProfilerSupported() {
18   return false;
19 }
20 
21 }  // namespace android
22 }  // namespace base
23