Index: trunk/src/content/browser/browser_main_runner.cc |
=================================================================== |
--- trunk/src/content/browser/browser_main_runner.cc (revision 217052) |
+++ trunk/src/content/browser/browser_main_runner.cc (working copy) |
@@ -19,7 +19,6 @@ |
#if defined(OS_WIN) |
#include "base/win/metro.h" |
-#include "base/win/win_util.h" |
#include "base/win/windows_version.h" |
#include "ui/base/win/scoped_ole_initializer.h" |
#endif |
@@ -104,13 +103,6 @@ |
if (result_code > 0) |
return result_code; |
-#if defined(OS_WIN) |
- // The process should crash when going through abnormal termination. |
- // Make sure this is done only when Shutdown() will be called. |
- base::win::SetShouldCrashOnProcessDetach(true); |
- base::win::SetAbortBehaviorForCrashReporting(); |
-#endif |
- |
// Return -1 to indicate no early termination. |
return -1; |
} |
@@ -138,10 +130,6 @@ |
notification_service_.reset(NULL); |
-#if defined(OS_WIN) |
- base::win::SetShouldCrashOnProcessDetach(false); |
-#endif |
- |
is_shutdown_ = true; |
} |