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

Side by Side Diff: chrome/browser/resources/feedback/js/data.js

Issue 2900643004: More descriptive feedback description in feedbacks filed from the SadTab page (Closed)
Patch Set: Created 3 years, 7 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
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 /** @type {string} 5 /** @type {string}
6 * @const 6 * @const
7 */ 7 */
8 var FEEDBACK_LANDING_PAGE = 8 var FEEDBACK_LANDING_PAGE =
9 'https://support.google.com/chrome/go/feedback_confirmation'; 9 'https://support.google.com/chrome/go/feedback_confirmation';
10 10
11 /** 11 /**
12 * Feedback flow defined in feedback_private.idl. 12 * Feedback flow defined in feedback_private.idl.
13 * @enum {string} 13 * @enum {string}
14 */ 14 */
15 var FeedbackFlow = { 15 var FeedbackFlow = {
16 REGULAR: 'regular', // Flow in a regular user session. 16 REGULAR: 'regular', // Flow in a regular user session.
17 LOGIN: 'login', // Flow on the login screen. 17 LOGIN: 'login', // Flow on the login screen.
18 SHOW_SRT_PROMPT: 'showSrtPrompt' // Prompt user to try Software Removal Tool 18 SHOW_SRT_PROMPT: 'showSrtPrompt', // Prompt user to try Software Removal Tool
19 SAD_TAB_CRASH: 'sadTabCrash' // Flow of feedback requested from SadTab pages.
lazyboy 2017/05/23 18:24:09 Not directly your change, but these should already
afakhry 2017/05/24 17:40:20 I see. Thanks for spotting that. I removed it.
19 }; 20 };
20 21
21 /** 22 /**
22 * The status of sending the feedback report as defined in feedback_private.idl. 23 * The status of sending the feedback report as defined in feedback_private.idl.
23 * @enum {string} 24 * @enum {string}
24 */ 25 */
25 var ReportStatus = { 26 var ReportStatus = {
26 SUCCESS: 'success', 27 SUCCESS: 'success',
27 DELAYED: 'delayed' 28 DELAYED: 'delayed'
28 }; 29 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698