OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 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_UI_SEND_FEEDBACK_EXPERIMENT_H_ | |
6 #define CHROME_BROWSER_UI_SEND_FEEDBACK_EXPERIMENT_H_ | |
7 | |
8 // This file exists to facilitate a finch experiment which | |
9 // modifies the description and/or location of the | |
10 // Report Feedback menu option, and corresponding option | |
11 // on the chrome://help page. [crbug.com/169339.] | |
SteveT
2013/03/19 14:38:58
nit: Hmm, I think we can include more words on som
Harry McCleave
2013/03/19 22:23:29
Done.
| |
12 namespace chrome { | |
SteveT
2013/03/19 14:38:58
Hmm, I *think* nested name spaces like this are al
Harry McCleave
2013/03/19 22:23:29
Done.
| |
13 namespace send_feedback_experiment { | |
14 | |
15 // Returns true if the alternative (Send Feedback) text should be | |
16 // used in place of the original (Report an Issue...). | |
17 bool UseAlternateText(); | |
18 | |
19 // Returns True if the alternative menu location for the Send Feedback/Report | |
20 // an Issue... option should be used. | |
21 bool UseAlternateLocation(); | |
22 | |
23 // Return the ID for the desired string to be used for a menu item | |
24 // (See UseAlternateText). | |
25 int GetMenuLabelID(); | |
26 | |
27 } // namespace send_feedback_experiment | |
SteveT
2013/03/19 14:38:58
nit: I believe there should be a break between the
Harry McCleave
2013/03/19 22:23:29
Done.
| |
28 } // namespace chrome | |
29 | |
30 #endif // CHROME_BROWSER_UI_SEND_FEEDBACK_EXPERIMENT_H_ | |
OLD | NEW |