Chromium Code Reviews| Index: ash/test/test_system_tray_delegate.h |
| diff --git a/ash/test/test_system_tray_delegate.h b/ash/test/test_system_tray_delegate.h |
| index f83022fbdcb49429054d1d3d1e733677752e70ed..6980aab46ad4acd2f88a85127947142ff3a5aa5b 100644 |
| --- a/ash/test/test_system_tray_delegate.h |
| +++ b/ash/test/test_system_tray_delegate.h |
| @@ -47,6 +47,9 @@ class TestSystemTrayDelegate : public DefaultSystemTrayDelegate { |
| // Clears the session length limit. |
| void ClearSessionLengthLimit(); |
| + // Sets the IME info. |
| + void SetCurrentIME(const IMEInfo& info); |
| + |
| // Overridden from SystemTrayDelegate: |
| LoginStatus GetUserLoginStatus() const override; |
| bool IsUserSupervised() const override; |
| @@ -55,12 +58,14 @@ class TestSystemTrayDelegate : public DefaultSystemTrayDelegate { |
| bool GetSessionStartTime(base::TimeTicks* session_start_time) override; |
| bool GetSessionLengthLimit(base::TimeDelta* session_length_limit) override; |
| void SignOut() override; |
| + void GetCurrentIME(IMEInfo* info) override; |
| private: |
| bool should_show_display_notification_; |
| LoginStatus login_status_; |
| base::TimeDelta session_length_limit_; |
| bool session_length_limit_set_; |
| + IMEInfo current_ime_; |
|
James Cook
2016/06/30 21:15:47
#include the header for this
Azure Wei
2016/07/01 03:48:05
Done.
|
| DISALLOW_COPY_AND_ASSIGN(TestSystemTrayDelegate); |
| }; |