Index: components/crash/content/app/crashpad_win.cc |
diff --git a/components/crash/content/app/crashpad_win.cc b/components/crash/content/app/crashpad_win.cc |
index 1628ab6a9d5cbfc1f8945e24cdee952fea8f4a2c..472fa48ad5685c611be8bb71b6a64ab143d57295 100644 |
--- a/components/crash/content/app/crashpad_win.cc |
+++ b/components/crash/content/app/crashpad_win.cc |
@@ -16,6 +16,8 @@ |
#include "base/strings/utf_string_conversions.h" |
#include "build/build_config.h" |
#include "components/crash/content/app/crash_reporter_client.h" |
+#include "components/startup_metric_utils/common/pre_read_field_trial_utils_win.h" |
+#include "content/public/common/content_switches.h" |
#include "third_party/crashpad/crashpad/client/crashpad_client.h" |
#include "third_party/crashpad/crashpad/client/crashpad_info.h" |
#include "third_party/crashpad/crashpad/client/simulate_crash_win.h" |
@@ -84,6 +86,9 @@ base::FilePath PlatformCrashpadInitialization(bool initial_client, |
exe_file = exe_dir.Append(FILE_PATH_LITERAL("crashpad_handler.exe")); |
} else { |
arguments.push_back("--type=crashpad-handler"); |
+ |
+ if (startup_metric_utils::GetPreReadOptions().use_prefetch_argument)) |
+ arguments.push_back(switches::kPrefetchArgumentOther); |
} |
// TODO(scottmg): See https://crashpad.chromium.org/bug/23. |