diff --git a/docs/platforms/native/guides/crashpad/index.mdx b/docs/platforms/native/guides/crashpad/index.mdx index aa65a3b36d7ae..752ac15adb746 100644 --- a/docs/platforms/native/guides/crashpad/index.mdx +++ b/docs/platforms/native/guides/crashpad/index.mdx @@ -32,18 +32,21 @@ bool startCrashpad() { // Path to the out-of-process handler executable base::FilePath handler("path/to/crashpad_handler"); // URL used to submit minidumps to - std::string url("___MINIDUMP_URL___"); + std::string minidump_url("___MINIDUMP_URL___"); + // PROXY used for the url + std::string http_proxy(""); // Optional annotations passed via --annotations to the handler - std::map annotations; + std::map annotations; // Optional arguments to pass to the handler - std::vector arguments; + std::vector arguments; CrashpadClient client; bool success = client.StartHandler( handler, database, database, - url, + minidump_url, + http_proxy, annotations, arguments, /* restartable */ true,