| Index: chrome/browser/chrome_browser_main_win.cc
|
| diff --git a/chrome/browser/chrome_browser_main_win.cc b/chrome/browser/chrome_browser_main_win.cc
|
| index 8a5295b0f141d4b313669ae395c3dcc76adcc195..3662b68eabfda8cefca0069716f07a0f07827ee9 100644
|
| --- a/chrome/browser/chrome_browser_main_win.cc
|
| +++ b/chrome/browser/chrome_browser_main_win.cc
|
| @@ -29,6 +29,7 @@
|
| #include "chrome/browser/system_monitor/removable_device_notifications_window_win.h"
|
| #include "chrome/browser/ui/simple_message_box.h"
|
| #include "chrome/browser/ui/uninstall_browser_prompt.h"
|
| +#include "chrome/browser/viewer/viewer_process_host.h"
|
| #include "chrome/common/chrome_constants.h"
|
| #include "chrome/common/chrome_result_codes.h"
|
| #include "chrome/common/chrome_switches.h"
|
| @@ -208,9 +209,11 @@ void ChromeBrowserMainPartsWin::PostMainMessageLoopStart() {
|
| }
|
|
|
| void ChromeBrowserMainPartsWin::PreMainMessageLoopRun() {
|
| + DVLOG(1) << __FUNCTION__;
|
| ChromeBrowserMainParts::PreMainMessageLoopRun();
|
|
|
| removable_device_notifications_window_->Init();
|
| + viewer_process_host_.reset(new viewer::ViewerProcessHost);
|
| }
|
|
|
| // static
|
|
|