| 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 48e6962c8ae730f8ad851d1dc98186406ea5e53d..146e9fb7da619a5da2ee30167c05556b6a44d3f6 100644
|
| --- a/chrome/browser/chrome_browser_main_win.cc
|
| +++ b/chrome/browser/chrome_browser_main_win.cc
|
| @@ -22,6 +22,7 @@
|
| #include "base/win/wrapped_window_proc.h"
|
| #include "chrome/browser/browser_util_win.h"
|
| #include "chrome/browser/first_run/first_run.h"
|
| +#include "chrome/browser/media_gallery/media_device_notification_window_win.h"
|
| #include "chrome/browser/metrics/metrics_service.h"
|
| #include "chrome/browser/profiles/profile_info_cache.h"
|
| #include "chrome/browser/profiles/profile_shortcut_manager_win.h"
|
| @@ -168,6 +169,9 @@ ChromeBrowserMainPartsWin::ChromeBrowserMainPartsWin(
|
| }
|
| }
|
|
|
| +ChromeBrowserMainPartsWin::~ChromeBrowserMainPartsWin() {
|
| +}
|
| +
|
| void ChromeBrowserMainPartsWin::ToolkitInitialized() {
|
| ChromeBrowserMainParts::ToolkitInitialized();
|
| gfx::PlatformFontWin::adjust_font_callback = &AdjustUIFont;
|
| @@ -180,6 +184,8 @@ void ChromeBrowserMainPartsWin::PreMainMessageLoopStart() {
|
| // Make sure that we know how to handle exceptions from the message loop.
|
| InitializeWindowProcExceptions();
|
| }
|
| + media_device_notification_window_.reset(
|
| + new chrome::MediaDeviceNotificationWindowWin());
|
| }
|
|
|
| // static
|
|
|