chromium/base/debug/debugger.cc

// Copyright 2011 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "base/debug/debugger.h"

#include "base/clang_profiling_buildflags.h"
#include "base/logging.h"
#include "base/threading/platform_thread.h"
#include "build/build_config.h"

#if BUILDFLAG(CLANG_PROFILING)
#include "base/test/clang_profiling.h"
#endif

namespace base {
namespace debug {

static bool is_debug_ui_suppressed =;

bool WaitForDebugger(int wait_seconds, bool silent) {}

void BreakDebugger() {}

void SetSuppressDebugUI(bool suppress) {}

bool IsDebugUISuppressed() {}

}  // namespace debug
}  // namespace base