| Index: content/browser/browser_main_loop.h
|
| diff --git a/content/browser/browser_main_loop.h b/content/browser/browser_main_loop.h
|
| index 403540b31c284c4c2541dd227427526c39851864..188aa3209d31e0043cd7e6fb247dd70fba4bb413 100644
|
| --- a/content/browser/browser_main_loop.h
|
| +++ b/content/browser/browser_main_loop.h
|
| @@ -48,7 +48,9 @@ class StartupTaskRunner;
|
| class TimeZoneMonitor;
|
| struct MainFunctionParams;
|
|
|
| -#if defined(OS_LINUX)
|
| +#if defined(OS_ANDROID)
|
| +class ScreenOrientationDelegate;
|
| +#elif defined(OS_LINUX)
|
| class DeviceMonitorLinux;
|
| #elif defined(OS_MACOSX)
|
| class DeviceMonitorMac;
|
| @@ -166,6 +168,10 @@ class CONTENT_EXPORT BrowserMainLoop {
|
| #elif defined(OS_MACOSX) && !defined(OS_IOS)
|
| scoped_ptr<DeviceMonitorMac> device_monitor_mac_;
|
| #endif
|
| +#if defined(OS_ANDROID)
|
| + // Android implementation of ScreenOrientationDelegate
|
| + scoped_ptr<ScreenOrientationDelegate> screen_orientation_delegate_;
|
| +#endif
|
| // The startup task runner is created by CreateStartupTasks()
|
| scoped_ptr<StartupTaskRunner> startup_task_runner_;
|
|
|
|
|