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

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: Fix test Created 3 years, 6 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.
13 * @enum {string}
14 */
15 var FeedbackFlow = {
16 REGULAR: 'regular', // Flow in a regular user session.
17 LOGIN: 'login', // Flow on the login screen.
18 SHOW_SRT_PROMPT: 'showSrtPrompt' // Prompt user to try Software Removal Tool
19 };
20
21 /**
22 * The status of sending the feedback report as defined in feedback_private.idl. 12 * The status of sending the feedback report as defined in feedback_private.idl.
23 * @enum {string} 13 * @enum {string}
24 */ 14 */
25 var ReportStatus = { 15 var ReportStatus = {
26 SUCCESS: 'success', 16 SUCCESS: 'success',
27 DELAYED: 'delayed' 17 DELAYED: 'delayed'
28 }; 18 };
OLDNEW
« no previous file with comments | « chrome/browser/feedback/show_feedback_page.cc ('k') | chrome/browser/resources/feedback/js/event_handler.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698