Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(260)

Side by Side Diff: chrome/browser/resources/md_extensions/error_page.html

Issue 2769293002: [MD Extensions] Include the manifest code snippet in load errors (Closed)
Patch Set: . Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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>
OLDNEW
« no previous file with comments | « chrome/browser/resources/md_extensions/compiled_resources2.gyp ('k') | chrome/browser/resources/md_extensions/load_error.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698