OLD | NEW |
---|---|
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 |
dschuyler
2016/12/23 01:24:17
The new style guide suggests not aligning, though
Dan Beam
2016/12/23 01:30:40
we don't maintain this by hand and the original ve
| |
19 }; | 19 }; |
20 | 20 |
21 /** | 21 /** |
22 * The status of sending the feedback report as defined in feedback_private.idl. | 22 * The status of sending the feedback report as defined in feedback_private.idl. |
23 * @enum {string} | 23 * @enum {string} |
24 */ | 24 */ |
25 var ReportStatus = { | 25 var ReportStatus = {SUCCESS: 'success', DELAYED: 'delayed'}; |
26 SUCCESS: 'success', | |
27 DELAYED: 'delayed' | |
28 }; | |
OLD | NEW |