Chromium Code Reviews| Index: chrome/browser/resources/feedback/js/data.js |
| diff --git a/chrome/browser/resources/feedback/js/data.js b/chrome/browser/resources/feedback/js/data.js |
| index ef83706f7dd903bfd4606998d9f8bb7477a9a884..1f7cb0c6d392ff00dcc227bd76e445a4695d116d 100644 |
| --- a/chrome/browser/resources/feedback/js/data.js |
| +++ b/chrome/browser/resources/feedback/js/data.js |
| @@ -13,8 +13,8 @@ var FEEDBACK_LANDING_PAGE = |
| * @enum {string} |
| */ |
| var FeedbackFlow = { |
| - REGULAR: 'regular', // Flow in a regular user session. |
| - LOGIN: 'login', // Flow on the login screen. |
| + REGULAR: 'regular', // Flow in a regular user session. |
| + LOGIN: 'login', // Flow on the login screen. |
| 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
|
| }; |
| @@ -22,7 +22,4 @@ var FeedbackFlow = { |
| * The status of sending the feedback report as defined in feedback_private.idl. |
| * @enum {string} |
| */ |
| -var ReportStatus = { |
| - SUCCESS: 'success', |
| - DELAYED: 'delayed' |
| -}; |
| +var ReportStatus = {SUCCESS: 'success', DELAYED: 'delayed'}; |