| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_PROTECTOR_MOCK_SETTING_CHANGE_H_ | 5 #ifndef CHROME_BROWSER_PROTECTOR_MOCK_SETTING_CHANGE_H_ |
| 6 #define CHROME_BROWSER_PROTECTOR_MOCK_SETTING_CHANGE_H_ | 6 #define CHROME_BROWSER_PROTECTOR_MOCK_SETTING_CHANGE_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
| 10 #include "chrome/browser/protector/base_setting_change.h" | 10 #include "chrome/browser/protector/base_setting_change.h" |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 MOCK_METHOD0(Timeout, void()); | 25 MOCK_METHOD0(Timeout, void()); |
| 26 | 26 |
| 27 MOCK_CONST_METHOD0(GetBadgeIconID, int()); | 27 MOCK_CONST_METHOD0(GetBadgeIconID, int()); |
| 28 MOCK_CONST_METHOD0(GetMenuItemIconID, int()); | 28 MOCK_CONST_METHOD0(GetMenuItemIconID, int()); |
| 29 MOCK_CONST_METHOD0(GetBubbleIconID, int()); | 29 MOCK_CONST_METHOD0(GetBubbleIconID, int()); |
| 30 | 30 |
| 31 MOCK_CONST_METHOD0(GetBubbleTitle, string16()); | 31 MOCK_CONST_METHOD0(GetBubbleTitle, string16()); |
| 32 MOCK_CONST_METHOD0(GetBubbleMessage, string16()); | 32 MOCK_CONST_METHOD0(GetBubbleMessage, string16()); |
| 33 MOCK_CONST_METHOD0(GetApplyButtonText, string16()); | 33 MOCK_CONST_METHOD0(GetApplyButtonText, string16()); |
| 34 MOCK_CONST_METHOD0(GetDiscardButtonText, string16()); | 34 MOCK_CONST_METHOD0(GetDiscardButtonText, string16()); |
| 35 |
| 36 MOCK_CONST_METHOD0(GetApplyDisplayName, DisplayName()); |
| 37 |
| 38 MOCK_CONST_METHOD0(GetNewSettingURL, GURL()); |
| 39 MOCK_CONST_METHOD0(CanBeMerged, bool()); |
| 35 }; | 40 }; |
| 36 | 41 |
| 37 } // namespace protector | 42 } // namespace protector |
| 38 | 43 |
| 39 #endif // CHROME_BROWSER_PROTECTOR_MOCK_SETTING_CHANGE_H_ | 44 #endif // CHROME_BROWSER_PROTECTOR_MOCK_SETTING_CHANGE_H_ |
| OLD | NEW |