mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Update to Chromium version 81.0.4044.0 (#737173)
This commit is contained in:
@ -146,7 +146,7 @@ index a2b0c74636f4..01370fdc20d9 100644
|
||||
struct Data;
|
||||
|
||||
diff --git third_party/crashpad/crashpad/handler/BUILD.gn third_party/crashpad/crashpad/handler/BUILD.gn
|
||||
index 550f686a4562..b6cc04846d42 100644
|
||||
index b06f68af3baa..42b47ab40109 100644
|
||||
--- third_party/crashpad/crashpad/handler/BUILD.gn
|
||||
+++ third_party/crashpad/crashpad/handler/BUILD.gn
|
||||
@@ -12,6 +12,7 @@
|
||||
@ -248,7 +248,7 @@ index 2ec1147d2620..8ff9a72e0bd7 100644
|
||||
//! \brief Calls ProcessPendingReports() in response to ReportPending() having
|
||||
//! been called on any thread, as well as periodically on a timer.
|
||||
diff --git third_party/crashpad/crashpad/handler/handler_main.cc third_party/crashpad/crashpad/handler/handler_main.cc
|
||||
index 7d9701c0bf08..767a3c23fb4f 100644
|
||||
index 1cf655aec466..50ff7ed6fdbf 100644
|
||||
--- third_party/crashpad/crashpad/handler/handler_main.cc
|
||||
+++ third_party/crashpad/crashpad/handler/handler_main.cc
|
||||
@@ -36,8 +36,10 @@
|
||||
@ -273,7 +273,7 @@ index 7d9701c0bf08..767a3c23fb4f 100644
|
||||
namespace crashpad {
|
||||
|
||||
namespace {
|
||||
@@ -200,6 +206,9 @@ struct Options {
|
||||
@@ -204,6 +210,9 @@ struct Options {
|
||||
bool periodic_tasks;
|
||||
bool rate_limit;
|
||||
bool upload_gzip;
|
||||
@ -281,9 +281,9 @@ index 7d9701c0bf08..767a3c23fb4f 100644
|
||||
+ int max_database_size;
|
||||
+ int max_database_age;
|
||||
#if defined(OS_CHROMEOS)
|
||||
bool use_cros_crash_reporter;
|
||||
bool use_cros_crash_reporter = false;
|
||||
base::FilePath minidump_dir_for_tests;
|
||||
@@ -558,6 +567,9 @@ int HandlerMain(int argc,
|
||||
@@ -563,6 +572,9 @@ int HandlerMain(int argc,
|
||||
kOptionTraceParentWithException,
|
||||
#endif
|
||||
kOptionURL,
|
||||
@ -293,7 +293,7 @@ index 7d9701c0bf08..767a3c23fb4f 100644
|
||||
#if defined(OS_CHROMEOS)
|
||||
kOptionUseCrosCrashReporter,
|
||||
kOptionMinidumpDirForTests,
|
||||
@@ -639,6 +651,9 @@ int HandlerMain(int argc,
|
||||
@@ -649,6 +661,9 @@ int HandlerMain(int argc,
|
||||
#endif // OS_CHROMEOS
|
||||
{"help", no_argument, nullptr, kOptionHelp},
|
||||
{"version", no_argument, nullptr, kOptionVersion},
|
||||
@ -303,7 +303,7 @@ index 7d9701c0bf08..767a3c23fb4f 100644
|
||||
{nullptr, 0, nullptr, 0},
|
||||
};
|
||||
|
||||
@@ -778,6 +793,27 @@ int HandlerMain(int argc,
|
||||
@@ -788,6 +803,27 @@ int HandlerMain(int argc,
|
||||
options.url = optarg;
|
||||
break;
|
||||
}
|
||||
@ -331,7 +331,7 @@ index 7d9701c0bf08..767a3c23fb4f 100644
|
||||
#if defined(OS_CHROMEOS)
|
||||
case kOptionUseCrosCrashReporter: {
|
||||
options.use_cros_crash_reporter = true;
|
||||
@@ -909,8 +945,14 @@ int HandlerMain(int argc,
|
||||
@@ -923,8 +959,14 @@ int HandlerMain(int argc,
|
||||
upload_thread_options.upload_gzip = options.upload_gzip;
|
||||
upload_thread_options.watch_pending_reports = options.periodic_tasks;
|
||||
|
||||
@ -346,7 +346,7 @@ index 7d9701c0bf08..767a3c23fb4f 100644
|
||||
upload_thread.Get()->Start();
|
||||
}
|
||||
|
||||
@@ -966,7 +1008,8 @@ int HandlerMain(int argc,
|
||||
@@ -984,7 +1026,8 @@ int HandlerMain(int argc,
|
||||
ScopedStoppable prune_thread;
|
||||
if (options.periodic_tasks) {
|
||||
prune_thread.Reset(new PruneCrashReportThread(
|
||||
|
Reference in New Issue
Block a user