Files
cef/libcef_dll/base/cef_dump_without_crashing.cc
Marshall Greenblatt 8db54e92c2 Tag 13500 API version
2025-03-12 14:37:45 -04:00

23 lines
842 B
C++

// Copyright (c) 2024 The Chromium Embedded Framework Authors.
// Portions copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "include/base/cef_dump_without_crashing.h"
#include "include/internal/cef_dump_without_crashing_internal.h"
bool CefDumpWithoutCrashing(long long mseconds_between_dumps,
const char* function_name,
const char* file_name,
int line_number) {
return cef_dump_without_crashing(mseconds_between_dumps, function_name,
file_name, line_number);
}
#if CEF_API_REMOVED(13500)
bool CefDumpWithoutCrashingUnthrottled() {
return cef_dump_without_crashing_unthrottled();
}
#endif