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

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

Issue 10066013: [protector] Homepage UI. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Added pyauto tests. 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 20 matching lines...) Expand all
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698