| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/html/cr.html"> | 1 <link rel="import" href="chrome://resources/html/cr.html"> |
| 2 <link rel="import" href="chrome://resources/html/polymer.html"> | 2 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/iron-icons.h
tml"> | 3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/iron-icons.h
tml"> |
| 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-list/iron-list.htm
l"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-list/iron-list.htm
l"> |
| 5 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani
matable-behavior.html"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani
matable-behavior.html"> |
| 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> |
| 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.html
"> | 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.html
"> |
| 8 <link rel="import" href="chrome://extensions/animation_helper.html"> | 8 <link rel="import" href="chrome://extensions/animation_helper.html"> |
| 9 <link rel="import" href="chrome://extensions/code_section.html"> | 9 <link rel="import" href="chrome://extensions/code_section.html"> |
| 10 | 10 |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 <img class$="[[computeErrorIconClass_(item)]]"> | 77 <img class$="[[computeErrorIconClass_(item)]]"> |
| 78 <div class="error-message">[[item.message]]</div> | 78 <div class="error-message">[[item.message]]</div> |
| 79 <paper-icon-button class="delete-button" | 79 <paper-icon-button class="delete-button" |
| 80 on-tap="onDeleteErrorTap_" | 80 on-tap="onDeleteErrorTap_" |
| 81 icon="delete" tabindex$="[[tabIndex]]"></paper-icon-button> | 81 icon="delete" tabindex$="[[tabIndex]]"></paper-icon-button> |
| 82 </div> | 82 </div> |
| 83 </template> | 83 </template> |
| 84 </iron-list> | 84 </iron-list> |
| 85 <div id="content-view"> | 85 <div id="content-view"> |
| 86 <extensions-code-section id="code-section" | 86 <extensions-code-section id="code-section" |
| 87 no-code-error="$i18n{noErrorsToShow}"> | 87 could-not-display-code="$i18n{noErrorsToShow}"> |
| 88 </extensions-code-section> | 88 </extensions-code-section> |
| 89 </div> | 89 </div> |
| 90 <div id="devtools-controls"> | 90 <div id="devtools-controls"> |
| 91 <!--TODO--> | 91 <!--TODO--> |
| 92 </div> | 92 </div> |
| 93 </div> | 93 </div> |
| 94 </template> | 94 </template> |
| 95 <script src="chrome://extensions/error_page.js"></script> | 95 <script src="chrome://extensions/error_page.js"></script> |
| 96 </dom-module> | 96 </dom-module> |
| OLD | NEW |