// Copyright (c) 2017 Marshall A. Greenblatt. All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the name Chromium Embedded // Framework nor the names of its contributors may be used to endorse // or promote products derived from this software without specific prior // written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // // --------------------------------------------------------------------------- // // This file was generated by the CEF translator tool and should not edited // by hand. See the translator.README.txt file in the tools directory for // more information. // #ifndef CEF_INCLUDE_CAPI_CEF_CRASH_UTIL_CAPI_H_ #define CEF_INCLUDE_CAPI_CEF_CRASH_UTIL_CAPI_H_ #pragma once #include "include/capi/cef_base_capi.h" #ifdef __cplusplus extern "C" { #endif /// // Crash reporting is configured using an INI-style config file named // "crash_reporter.cfg". On Windows and Linux this file must be placed next to // the main application executable. On macOS this file must be placed in the // top-level app bundle Resources directory (e.g. // ".app/Contents/Resources"). File contents are as follows: // // # Comments start with a hash character and must be on their own line. // // [Config] // AppName= // ExternalHandler= // ServerURL= // RateLimitEnabled= // MaxUploadsPerDay= // MaxDatabaseSizeInMb= // MaxDatabaseAgeInDays= // // [CrashKeys] // my_key1= // my_key2= // // Config section: // // If "AppName" is set on Windows then crash report information (metrics, // database and dumps) will be stored locally on disk under the // "C:\Users\[CurrentUser]\AppData\Local\[AppName]\User Data" folder. On other // platforms the CefSettings.user_data_path value will be used. // // If "ExternalHandler" is set on Windows then the specified exe will be // launched as the crashpad-handler instead of re-launching the main process // exe. The value can be an absolute path or a path relative to the main exe // directory. On Linux the CefSettings.browser_subprocess_path value will be // used. On macOS the existing subprocess app bundle will be used. // // If "ServerURL" is set then crashes will be uploaded as a multi-part POST // request to the specified URL. Otherwise, reports will only be stored locally // on disk. // // If "RateLimitEnabled" is set to true (1) then crash report uploads will be // rate limited as follows: // 1. If "MaxUploadsPerDay" is set to a positive value then at most the // specified number of crashes will be uploaded in each 24 hour period. // 2. If crash upload fails due to a network or server error then an // incremental backoff delay up to a maximum of 24 hours will be applied for // retries. // 3. If a backoff delay is applied and "MaxUploadsPerDay" is > 1 then the // "MaxUploadsPerDay" value will be reduced to 1 until the client is // restarted. This helps to avoid an upload flood when the network or // server error is resolved. // Rate limiting is not supported on Linux. // // If "MaxDatabaseSizeInMb" is set to a positive value then crash report storage // on disk will be limited to that size in megabytes. For example, on Windows // each dump is about 600KB so a "MaxDatabaseSizeInMb" value of 20 equates to // about 34 crash reports stored on disk. Not supported on Linux. // // If "MaxDatabaseAgeInDays" is set to a positive value then crash reports older // than the specified age in days will be deleted. Not supported on Linux. // // CrashKeys section: // // Any number of crash keys can be specified for use by the application. Crash // key values will be truncated based on the specified size (small = 63 bytes, // medium = 252 bytes, large = 1008 bytes). The value of crash keys can be set // from any thread or process using the CefSetCrashKeyValue function. These // key/value pairs will be sent to the crash server along with the crash dump // file. Medium and large values will be chunked for submission. For example, if // your key is named "mykey" then the value will be broken into ordered chunks // and submitted using keys named "mykey-1", "mykey-2", etc. /// CEF_EXPORT int cef_crash_reporting_enabled(); /// // Sets or clears a specific key-value pair from the crash metadata. /// CEF_EXPORT void cef_set_crash_key_value(const cef_string_t* key, const cef_string_t* value); #ifdef __cplusplus } #endif #endif // CEF_INCLUDE_CAPI_CEF_CRASH_UTIL_CAPI_H_