| OLD | NEW |
| (Empty) |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_MOCK_LOGIN_DISPLAY_H_ | |
| 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_MOCK_LOGIN_DISPLAY_H_ | |
| 7 | |
| 8 #include "base/basictypes.h" | |
| 9 #include "chrome/browser/chromeos/login/login_display.h" | |
| 10 #include "testing/gmock/include/gmock/gmock.h" | |
| 11 | |
| 12 namespace chromeos { | |
| 13 | |
| 14 class MockLoginDisplay : public LoginDisplay { | |
| 15 public: | |
| 16 MockLoginDisplay(); | |
| 17 ~MockLoginDisplay(); | |
| 18 | |
| 19 MOCK_METHOD0(ClearAndEnablePassword, void(void)); | |
| 20 MOCK_METHOD4(Init, void(const UserList&, bool, bool, bool)); | |
| 21 MOCK_METHOD0(OnPreferencesChanged, void(void)); | |
| 22 MOCK_METHOD1(OnUserImageChanged, void(const User&)); | |
| 23 MOCK_METHOD0(OnFadeOut, void(void)); | |
| 24 MOCK_METHOD1(OnLoginSuccess, void(const std::string&)); | |
| 25 MOCK_METHOD1(SetUIEnabled, void(bool)); | |
| 26 MOCK_METHOD1(SelectPod, void(int)); | |
| 27 MOCK_METHOD1(ShowBannerMessage, void(const std::string&)); | |
| 28 MOCK_METHOD3(ShowUserPodButton, void(const std::string&, | |
| 29 const std::string&, | |
| 30 const base::Closure&)); | |
| 31 MOCK_METHOD1(HideUserPodButton, void(const std::string&)); | |
| 32 MOCK_METHOD3(SetAuthType, | |
| 33 void(const std::string&, | |
| 34 LoginDisplay::AuthType, | |
| 35 const std::string&)); | |
| 36 MOCK_CONST_METHOD1(GetAuthType, AuthType(const std::string&)); | |
| 37 MOCK_METHOD3(ShowError, void(int, int, HelpAppLauncher::HelpTopic)); | |
| 38 MOCK_METHOD1(ShowErrorScreen, void(LoginDisplay::SigninError)); | |
| 39 MOCK_METHOD1(ShowGaiaPasswordChanged, void(const std::string&)); | |
| 40 MOCK_METHOD1(ShowPasswordChangedDialog, void(bool)); | |
| 41 MOCK_METHOD1(ShowSigninUI, void(const std::string&)); | |
| 42 MOCK_METHOD1(ShowControlBar, void(bool)); | |
| 43 MOCK_METHOD1(OnBeforeUserRemoved, void(const std::string&)); | |
| 44 MOCK_METHOD1(OnUserRemoved, void(const std::string&)); | |
| 45 | |
| 46 private: | |
| 47 DISALLOW_COPY_AND_ASSIGN(MockLoginDisplay); | |
| 48 }; | |
| 49 | |
| 50 } // namespace chromeos | |
| 51 | |
| 52 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_MOCK_LOGIN_DISPLAY_H_ | |
| OLD | NEW |