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.] | |
12 namespace chrome { | |
13 namespace send_feedback_experiment { | |
14 bool UseAlternateText(); | |
sky
2013/03/15 23:23:42
nit: newline between 13/14.
And add descriptions,
Harry McCleave
2013/03/19 03:11:32
Done.
| |
15 bool UseAlternateLocation(); | |
16 | |
17 } // namespace send_feedback_experiment | |
18 } // namespace chrome | |
19 | |
20 #endif // CHROME_BROWSER_UI_SEND_FEEDBACK_EXPERIMENT_H_ | |
OLD | NEW |