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 * 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. |
13 * @enum {string} | 13 * @enum {string} |
14 */ | 14 */ |
15 var ReportStatus = { | 15 var ReportStatus = {SUCCESS: 'success', DELAYED: 'delayed'}; |
16 SUCCESS: 'success', | |
17 DELAYED: 'delayed' | |
18 }; | |
OLD | NEW |