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

Side by Side Diff: chrome/browser/resources/settings/site_settings/usb_devices.html

Issue 2500513003: Make setting's protocol handler use cr-action-menu instead of paper-item. (Closed)
Patch Set: fix return type of boolean function Created 4 years, 1 month 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/polymer.html"> 1 <link rel="import" href="chrome://resources/html/polymer.html">
2 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button.html"> 2 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button.html">
3 <link rel="import" href="chrome://resources/cr_elements/cr_action_menu/cr_action _menu.html">
3 4
4 <link rel="import" href="/i18n_setup.html"> 5 <link rel="import" href="/i18n_setup.html">
5 <link rel="import" href="/settings_shared_css.html"> 6 <link rel="import" href="/settings_shared_css.html">
6 <link rel="import" href="/site_settings/site_settings_behavior.html"> 7 <link rel="import" href="/site_settings/site_settings_behavior.html">
7 <link rel="import" href="/site_settings/site_settings_prefs_browser_proxy.html"> 8 <link rel="import" href="/site_settings/site_settings_prefs_browser_proxy.html">
8 9
9 <dom-module id="usb-devices"> 10 <dom-module id="usb-devices">
10 <template> 11 <template>
11 <style include="settings-shared"> 12 <style include="settings-shared">
12 :host { 13 :host {
(...skipping 25 matching lines...) Expand all
38 39
39 <dialog is="cr-action-menu"> 40 <dialog is="cr-action-menu">
40 <button class="dropdown-item" role="option" on-tap="onRemoveTap_" id="remo veButton"> 41 <button class="dropdown-item" role="option" on-tap="onRemoveTap_" id="remo veButton">
41 $i18n{handlerRemove} 42 $i18n{handlerRemove}
42 </button> 43 </button>
43 </dialog> 44 </dialog>
44 45
45 </template> 46 </template>
46 <script src="usb_devices.js"></script> 47 <script src="usb_devices.js"></script>
47 </dom-module> 48 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698