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

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

Issue 2266303002: [MD Extensions] Add the source type on the details page for an extension (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: michaels Created 4 years, 3 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-flex-layout/iron-f lex-layout-classes.html"> 3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f lex-layout-classes.html">
4 <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-icons/iron-icons.h tml">
5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-checkbox/paper-ch eckbox.html"> 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-checkbox/paper-ch eckbox.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://resources/polymer/v1_0/neon-animation/neon-ani matable-behavior.html"> 8 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable-behavior.html">
9 <link rel="import" href="chrome://extensions/animation_helper.html"> 9 <link rel="import" href="chrome://extensions/animation_helper.html">
10 <link rel="import" href="chrome://extensions/item_source.html">
10 11
11 <dom-module id="extensions-detail-view"> 12 <dom-module id="extensions-detail-view">
12 <style include="iron-flex"></style> 13 <style include="iron-flex"></style>
13 <template> 14 <template>
14 <style> 15 <style>
15 #main { 16 #main {
16 background-color: white; 17 background-color: white;
17 height: 800px; 18 height: 800px;
18 width: 90%; 19 width: 90%;
19 } 20 }
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 <paper-checkbox id="collect-errors" class="checkbox" 129 <paper-checkbox id="collect-errors" class="checkbox"
129 checked="[[data.errorCollection.isActive]]" 130 checked="[[data.errorCollection.isActive]]"
130 on-change="onCollectErrorsChange_"> 131 on-change="onCollectErrorsChange_">
131 $i18n{itemCollectErrors} 132 $i18n{itemCollectErrors}
132 </paper-checkbox> 133 </paper-checkbox>
133 </template> 134 </template>
134 </div> 135 </div>
135 </template> 136 </template>
136 <div class="section"> 137 <div class="section">
137 <div class="section-title">$i18n{itemSource}</div> 138 <div class="section-title">$i18n{itemSource}</div>
138 <div class="section-content">TODO</div> 139 <div class="section-content">
140 [[computeSourceString_(data.*)]]
141 </div>
139 </div> 142 </div>
140 </div> 143 </div>
141 </template> 144 </template>
142 <script src="chrome://extensions/detail_view.js"></script> 145 <script src="chrome://extensions/detail_view.js"></script>
143 </dom-module> 146 </dom-module>
OLDNEW
« no previous file with comments | « chrome/browser/resources/md_extensions/compiled_resources2.gyp ('k') | chrome/browser/resources/md_extensions/detail_view.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698