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 field trial which modifies the description 9 // and/or location of the Report Feedback menu option, and corresponding option 10 // on the chrome://help page. (crbug.com/169339) 11 namespace chrome { 12 13 // Returns true if the alternative (Send Feedback) text should be 14 // used in place of the original (Report an Issue...). 15 bool UseAlternateSendFeedbackText(); 16 17 // Returns true if the alternative menu location for the Send Feedback/Report 18 // an Issue... option should be used. 19 bool UseAlternateSendFeedbackLocation(); 20 21 // Return the ID for the desired string to be used for a menu item 22 // (See UseAlternateText). 23 int GetSendFeedbackMenuLabelID(); 24 25 } // namespace chrome 26 27 #endif // CHROME_BROWSER_UI_SEND_FEEDBACK_EXPERIMENT_H_ 28