| Index: android_webview/browser/aw_browser_main_parts.cc | 
| diff --git a/android_webview/browser/aw_browser_main_parts.cc b/android_webview/browser/aw_browser_main_parts.cc | 
| index 7bba3014781a3e5666b69b03558e3e3b63df95b2..1cfa1be3c4528625681630c6c8971561767fa92d 100644 | 
| --- a/android_webview/browser/aw_browser_main_parts.cc | 
| +++ b/android_webview/browser/aw_browser_main_parts.cc | 
| @@ -18,6 +18,7 @@ | 
| #include "base/command_line.h" | 
| #include "base/files/file_path.h" | 
| #include "base/path_service.h" | 
| +#include "components/crash/content/browser/crash_micro_dump_manager_android.h" | 
| #include "content/public/browser/android/synchronous_compositor.h" | 
| #include "content/public/browser/render_frame_host.h" | 
| #include "content/public/browser/render_process_host.h" | 
| @@ -76,6 +77,10 @@ int AwBrowserMainParts::PreCreateThreads() { | 
| base::android::MemoryPressureListenerAndroid::RegisterSystemCallback( | 
| base::android::AttachCurrentThread()); | 
| DeferredGpuCommandService::SetInstance(); | 
| +  if (!base::CommandLine::ForCurrentProcess()->HasSwitch( | 
| +          switches::kSingleProcess)) { | 
| +    crash_micro_dump_manager_.reset(new breakpad::CrashMicroDumpManager()); | 
| +  } | 
|  | 
| return content::RESULT_CODE_NORMAL_EXIT; | 
| } | 
|  |