| Index: chrome/app/chrome_main_delegate.cc
|
| diff --git a/chrome/app/chrome_main_delegate.cc b/chrome/app/chrome_main_delegate.cc
|
| index 65b84663227ee656696911b921bc470f062878ac..2d277a6ecf4a095a7fe3be2d7549ba278fa5ff02 100644
|
| --- a/chrome/app/chrome_main_delegate.cc
|
| +++ b/chrome/app/chrome_main_delegate.cc
|
| @@ -49,6 +49,7 @@
|
| #include "chrome/app/close_handle_hook_win.h"
|
| #include "chrome/common/child_process_logging.h"
|
| #include "chrome/common/terminate_on_heap_corruption_experiment_win.h"
|
| +#include "chrome/common/v8_breakpad_support_win.h"
|
| #include "sandbox/win/src/sandbox.h"
|
| #include "ui/base/resource/resource_bundle_win.h"
|
| #endif
|
| @@ -402,6 +403,10 @@ bool ChromeMainDelegate::BasicStartupComplete(int* exit_code) {
|
|
|
| Profiling::ProcessStarted();
|
|
|
| +#if defined(OS_WIN)
|
| + v8_breakpad_support::SetUp();
|
| +#endif
|
| +
|
| #if defined(OS_POSIX)
|
| if (HandleVersionSwitches(command_line)) {
|
| *exit_code = 0;
|
|
|