Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1671)

Unified Diff: ash/test/test_system_tray_delegate.h

Issue 1996563002: Add ImeMenuTray element. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Activates window when clicked. Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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..2ef4a22d05dce0e85e3e5506283a2cd41697aa7a 100644
--- a/ash/test/test_system_tray_delegate.h
+++ b/ash/test/test_system_tray_delegate.h
@@ -55,12 +55,16 @@ 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;
+
+ void SetCurrentIME(IMEInfo info);
sadrul 2016/06/29 15:14:10 non-override before overrides. Also, const&
Azure Wei 2016/06/30 00:36:30 Done.
private:
bool should_show_display_notification_;
LoginStatus login_status_;
base::TimeDelta session_length_limit_;
bool session_length_limit_set_;
+ IMEInfo current_ime_;
DISALLOW_COPY_AND_ASSIGN(TestSystemTrayDelegate);
};

Powered by Google App Engine
This is Rietveld 408576698