| Index: ash/system/status_area_widget.h
|
| diff --git a/ash/system/status_area_widget.h b/ash/system/status_area_widget.h
|
| index 83a2b2372817bed7779f34f796265687982d33ed..58606df9c789a3226cdc6965f3253588532c3a94 100644
|
| --- a/ash/system/status_area_widget.h
|
| +++ b/ash/system/status_area_widget.h
|
| @@ -20,6 +20,7 @@ class WebNotificationTray;
|
| class WmShelf;
|
| class WmWindow;
|
| #if defined(OS_CHROMEOS)
|
| +class ImeMenuTray;
|
| class LogoutButtonTray;
|
| class VirtualKeyboardTray;
|
| #endif
|
| @@ -59,6 +60,10 @@ class ASH_EXPORT StatusAreaWidget : public views::Widget {
|
|
|
| LoginStatus login_status() const { return login_status_; }
|
|
|
| +#if defined(OS_CHROMEOS)
|
| + ImeMenuTray* ime_menu_tray() { return ime_menu_tray_; }
|
| +#endif
|
| +
|
| // Returns true if the shelf should be visible. This is used when the
|
| // shelf is configured to auto-hide and test if the shelf should force
|
| // the shelf to remain visible.
|
| @@ -82,6 +87,7 @@ class ASH_EXPORT StatusAreaWidget : public views::Widget {
|
| #if defined(OS_CHROMEOS)
|
| void AddLogoutButtonTray();
|
| void AddVirtualKeyboardTray();
|
| + void AddImeMenuTray();
|
| #endif
|
| void AddOverviewButtonTray();
|
|
|
| @@ -93,6 +99,7 @@ class ASH_EXPORT StatusAreaWidget : public views::Widget {
|
| #if defined(OS_CHROMEOS)
|
| LogoutButtonTray* logout_button_tray_;
|
| VirtualKeyboardTray* virtual_keyboard_tray_;
|
| + ImeMenuTray* ime_menu_tray_;
|
| #endif
|
| LoginStatus login_status_;
|
|
|
|
|