| Index: content/browser/browser_main_loop.cc
|
| diff --git a/content/browser/browser_main_loop.cc b/content/browser/browser_main_loop.cc
|
| index 2019ce6bf835c0d27c7583647083def6cfe91f60..3addee33ee6aec88ac6cc611dc0e7d5bd86b05d1 100644
|
| --- a/content/browser/browser_main_loop.cc
|
| +++ b/content/browser/browser_main_loop.cc
|
| @@ -70,6 +70,10 @@
|
| #include "content/browser/android/surface_texture_peer_browser_impl.h"
|
| #endif
|
|
|
| +#if defined(OS_MACOSX)
|
| +#include "content/browser/theme_helper_mac.h"
|
| +#endif
|
| +
|
| #if defined(OS_WIN)
|
| #include <windows.h>
|
| #include <commctrl.h>
|
| @@ -1021,6 +1025,10 @@ int BrowserMainLoop::BrowserThreadsStarted() {
|
| CAUSE_FOR_GPU_LAUNCH_BROWSER_STARTUP));
|
| }
|
| #endif // !defined(OS_IOS)
|
| +
|
| +#if defined(OS_MACOSX)
|
| + ThemeHelperMac::GetInstance();
|
| +#endif
|
| return result_code_;
|
| }
|
|
|
|
|