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

Side by Side Diff: chrome/browser/resources/settings/bluetooth_page/bluetooth_page.html

Issue 2224163002: Settings Router Refactor: Replace route.subpage usage with route.path (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge Created 4 years, 4 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/i18n_behavior.html"> 1 <link rel="import" href="chrome://resources/html/i18n_behavior.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-collapse/iron-coll apse.html"> 3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-collapse/iron-coll apse.html">
4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classe s/iron-flex-layout.html"> 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classe s/iron-flex-layout.html">
5 <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/iron-list/iron-list.htm l">
6 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html"> 6 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html">
7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html"> 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html">
8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-toggle-button/pap er-toggle-button.html"> 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-toggle-button/pap er-toggle-button.html">
9 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_pref_in dicator.html"> 9 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_pref_in dicator.html">
10 <link rel="import" href="/icons.html"> 10 <link rel="import" href="/icons.html">
(...skipping 23 matching lines...) Expand all
34 } 34 }
35 35
36 settings-bluetooth-add-device-dialog, 36 settings-bluetooth-add-device-dialog,
37 settings-bluetooth-pair-device-dialog { 37 settings-bluetooth-pair-device-dialog {
38 height: 400px; 38 height: 400px;
39 padding: 0; 39 padding: 0;
40 width: 500px; 40 width: 500px;
41 } 41 }
42 </style> 42 </style>
43 <settings-animated-pages id="pages" section="bluetooth"> 43 <settings-animated-pages id="pages" section="bluetooth">
44 <neon-animatable id="main"> 44 <neon-animatable route-path="default">
45 <div class="settings-box first"> 45 <div class="settings-box first">
46 <div class="layout horizontal center flex"> 46 <div class="layout horizontal center flex">
47 <iron-icon icon="settings:bluetooth"></iron-icon> 47 <iron-icon icon="settings:bluetooth"></iron-icon>
48 <span class="flex">$i18n{bluetoothEnable}</span> 48 <span class="flex">$i18n{bluetoothEnable}</span>
49 <cr-expand-button id="expandListButton" 49 <cr-expand-button id="expandListButton"
50 hidden$="[[!bluetoothEnabled]]" 50 hidden$="[[!bluetoothEnabled]]"
51 expanded="{{deviceListExpanded}}"> 51 expanded="{{deviceListExpanded}}">
52 </cr-expand-button> 52 </cr-expand-button>
53 <paper-toggle-button id="enableBluetooth" 53 <paper-toggle-button id="enableBluetooth"
54 checked="{{bluetoothEnabled}}" 54 checked="{{bluetoothEnabled}}"
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 error-message="[[errorMessage]]" 92 error-message="[[errorMessage]]"
93 on-device-event="onDeviceEvent_" 93 on-device-event="onDeviceEvent_"
94 on-response="onResponse_" 94 on-response="onResponse_"
95 pairing-device="[[pairingDevice]]" 95 pairing-device="[[pairingDevice]]"
96 pairing-event="[[pairingEvent]]"> 96 pairing-event="[[pairingEvent]]">
97 </bluetooth-device-dialog> 97 </bluetooth-device-dialog>
98 98
99 </template> 99 </template>
100 <script src="bluetooth_page.js"></script> 100 <script src="bluetooth_page.js"></script>
101 </dom-module> 101 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698