Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html"> | |
| 2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm l"> | |
| 3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/av-icons.htm l"> | |
| 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/communicatio n-icons.html"> | |
| 5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/social-icons .html"> | |
| 6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f lex-layout.html"> | |
|
michaelpg
2015/11/10 18:24:13
nit: alphabetize
Finnur
2015/11/11 11:37:37
Done.
| |
| 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-dropdown-menu/pap er-dropdown-menu.html"> | |
| 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-item/paper-item.h tml"> | |
| 9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-menu/paper-menu.h tml"> | |
| 10 <link rel="import" href="chrome://md-settings/prefs/prefs_behavior.html"> | |
| 11 <link rel="import" href="chrome://md-settings/site_settings/site_settings_behavi or.html"> | |
| 12 | |
| 13 <dom-module id="site-details-permission"> | |
| 14 <link rel="import" type="css" | |
| 15 href="chrome://md-settings/settings_page/settings_page.css"> | |
| 16 <link rel="import" type="css" href="site_details_permission.css"> | |
| 17 <template> | |
| 18 <div id="details" class="horizontal layout top" hidden> | |
| 19 <div class="left-column"> | |
| 20 <iron-icon icon="[[computeIconForContentCategory(category)]]" | |
| 21 item-icon></iron-icon> | |
| 22 </div> | |
| 23 <div class="flex right-column"> | |
| 24 <div class="permission-header"> | |
| 25 [[computeTitleForContentCategory(category)]] | |
| 26 </div> | |
| 27 <div class="permission-list"> | |
| 28 <paper-dropdown-menu> | |
| 29 <paper-menu id="permission" class="dropdown-content"> | |
| 30 <paper-item>[[i18n_.allowAction]]</paper-item> | |
| 31 <paper-item>[[i18n_.blockAction]]</paper-item> | |
| 32 </paper-menu> | |
| 33 </paper-dropdown-menu> | |
| 34 </div> | |
| 35 </div> | |
| 36 </div> | |
| 37 </template> | |
| 38 <script src="site_details_permission.js"></script> | |
| 39 </dom-module> | |
| OLD | NEW |