Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(427)

Unified Diff: chrome/app/chrome_exe_main_win.cc

Issue 2743383002: Fix SyzyASAN build after Crashpad changes. (Closed)
Patch Set: Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/app/chrome_exe_main_win.cc
diff --git a/chrome/app/chrome_exe_main_win.cc b/chrome/app/chrome_exe_main_win.cc
index cf40708bfedb158951dfb27fbd84fcd86a1b662f..975d04f59645d23a839ebb3a59e32994ff481941 100644
--- a/chrome/app/chrome_exe_main_win.cc
+++ b/chrome/app/chrome_exe_main_win.cc
@@ -218,11 +218,6 @@ int RunFallbackCrashHandler(const base::CommandLine& cmd_line) {
} // namespace
-#if defined(SYZYASAN)
-// This is in chrome_elf.
-extern "C" void BlockUntilHandlerStartedImpl();
-#endif // SYZYASAN
-
#if !defined(WIN_CONSOLE_APP)
int APIENTRY wWinMain(HINSTANCE instance, HINSTANCE prev, wchar_t*, int) {
#else
@@ -260,14 +255,6 @@ int main() {
// Signal Chrome Elf that Chrome has begun to start.
SignalChromeElf();
-#if defined(SYZYASAN)
- if (process_type.empty()) {
- // This is a temporary workaround for a race during startup with the
- // syzyasan_rtl.dll. See https://crbug.com/675710.
- BlockUntilHandlerStartedImpl();
- }
-#endif // SYZYASAN
-
// The exit manager is in charge of calling the dtors of singletons.
base::AtExitManager exit_manager;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698