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 20 matching lines...) Expand all Loading... |
31 | 31 |
32 MOCK_CONST_METHOD0(GetBubbleTitle, string16()); | 32 MOCK_CONST_METHOD0(GetBubbleTitle, string16()); |
33 MOCK_CONST_METHOD0(GetBubbleMessage, string16()); | 33 MOCK_CONST_METHOD0(GetBubbleMessage, string16()); |
34 MOCK_CONST_METHOD0(GetApplyButtonText, string16()); | 34 MOCK_CONST_METHOD0(GetApplyButtonText, string16()); |
35 MOCK_CONST_METHOD0(GetDiscardButtonText, string16()); | 35 MOCK_CONST_METHOD0(GetDiscardButtonText, string16()); |
36 | 36 |
37 MOCK_CONST_METHOD0(GetApplyDisplayName, DisplayName()); | 37 MOCK_CONST_METHOD0(GetApplyDisplayName, DisplayName()); |
38 | 38 |
39 MOCK_CONST_METHOD0(GetNewSettingURL, GURL()); | 39 MOCK_CONST_METHOD0(GetNewSettingURL, GURL()); |
40 MOCK_CONST_METHOD0(CanBeMerged, bool()); | 40 MOCK_CONST_METHOD0(CanBeMerged, bool()); |
| 41 |
| 42 MOCK_CONST_METHOD0(IsUserVisible, bool()); |
41 }; | 43 }; |
42 | 44 |
43 } // namespace protector | 45 } // namespace protector |
44 | 46 |
45 #endif // CHROME_BROWSER_PROTECTOR_MOCK_SETTING_CHANGE_H_ | 47 #endif // CHROME_BROWSER_PROTECTOR_MOCK_SETTING_CHANGE_H_ |
OLD | NEW |