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

Side by Side Diff: chrome/browser/protector/mock_setting_change.h

Issue 9968007: [protector] Support for collapsing multiple changes into a single one. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge Created 8 years, 8 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698