OLD | NEW |
1 <!doctype html> | 1 <!doctype html> |
2 <!-- | 2 <!-- |
3 Copyright 2014 The Chromium Authors. All rights reserved. | 3 Copyright 2014 The Chromium Authors. All rights reserved. |
4 Use of this source code is governed by a BSD-style license that can be | 4 Use of this source code is governed by a BSD-style license that can be |
5 found in the LICENSE file. | 5 found in the LICENSE file. |
6 --> | 6 --> |
7 | 7 |
8 <html> | 8 <html> |
9 <head> | 9 <head> |
10 <meta charset="utf-8"> | 10 <meta charset="utf-8"> |
11 <link rel="icon" type="image/png" href="icon16.png"> | 11 <link rel="icon" type="image/png" href="icon16.png"> |
12 <link rel="stylesheet" href="open_sans.css"> | 12 <link rel="stylesheet" href="open_sans.css"> |
13 <link rel="stylesheet" href="feedback_consent.css"> | 13 <link rel="stylesheet" href="feedback_consent.css"> |
14 <link rel="stylesheet" href="main.css"> | 14 <link rel="stylesheet" href="main.css"> |
15 <link rel="stylesheet" href="message_window.css"> | 15 <link rel="stylesheet" href="message_window.css"> |
| 16 <script src="base.js"></script> |
16 <script src="error.js"></script> | 17 <script src="error.js"></script> |
17 <script src="feedback_consent.js"></script> | 18 <script src="feedback_consent.js"></script> |
18 <script src="oauth2_api_impl.js"></script> | 19 <script src="oauth2_api_impl.js"></script> |
19 <script src="plugin_settings.js"></script> | 20 <script src="plugin_settings.js"></script> |
20 <script src="l10n.js"></script> | 21 <script src="l10n.js"></script> |
21 <script src="xhr.js"></script> | 22 <script src="xhr.js"></script> |
22 <title i18n-content="FEEDBACK_CONSENT_TITLE"></title> | 23 <title i18n-content="FEEDBACK_CONSENT_TITLE"></title> |
23 </head> | 24 </head> |
24 <body> | 25 <body> |
25 <h2 i18n-content="FEEDBACK_CONSENT_TITLE"></h2> | 26 <h2 i18n-content="FEEDBACK_CONSENT_TITLE"></h2> |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 i18n-content="WORKING" | 60 i18n-content="WORKING" |
60 hidden></span> | 61 hidden></span> |
61 <button id="feedback-consent-ok" | 62 <button id="feedback-consent-ok" |
62 i18n-content="OK" | 63 i18n-content="OK" |
63 autofocus="autofocus"></button> | 64 autofocus="autofocus"></button> |
64 <button id="feedback-consent-cancel" | 65 <button id="feedback-consent-cancel" |
65 i18n-content="CANCEL"></button> | 66 i18n-content="CANCEL"></button> |
66 </div> | 67 </div> |
67 </body> | 68 </body> |
68 </html> | 69 </html> |
OLD | NEW |