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

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

Issue 2715403005: MD Settings Fix associated-control for bluetooth, people, device subpage (Closed)
Patch Set: Restore dom-if 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/i18n_behavior.html"> 1 <link rel="import" href="chrome://resources/html/i18n_behavior.html">
2 <link rel="import" href="chrome://resources/html/md_select_css.html"> 2 <link rel="import" href="chrome://resources/html/md_select_css.html">
3 <link rel="import" href="chrome://resources/html/polymer.html"> 3 <link rel="import" href="chrome://resources/html/polymer.html">
4 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> 4 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html">
5 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html"> 5 <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/paper-icon-button/paper -icon-button-light.html"> 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button-light.html">
7 <link rel="import" href="device_page_browser_proxy.html"> 7 <link rel="import" href="device_page_browser_proxy.html">
8 <link rel="import" href="display.html"> 8 <link rel="import" href="display.html">
9 <link rel="import" href="keyboard.html"> 9 <link rel="import" href="keyboard.html">
10 <link rel="import" href="pointers.html"> 10 <link rel="import" href="pointers.html">
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 </settings-pointers> 94 </settings-pointers>
95 </settings-subpage> 95 </settings-subpage>
96 </template> 96 </template>
97 <template is="dom-if" route-path="/keyboard-overlay"> 97 <template is="dom-if" route-path="/keyboard-overlay">
98 <settings-subpage 98 <settings-subpage
99 associated-control="[[$$('#keyboardRow')]]" 99 associated-control="[[$$('#keyboardRow')]]"
100 page-title="$i18n{keyboardTitle}"> 100 page-title="$i18n{keyboardTitle}">
101 <settings-keyboard prefs="{{prefs}}"></settings-keyboard> 101 <settings-keyboard prefs="{{prefs}}"></settings-keyboard>
102 </settings-subpage> 102 </settings-subpage>
103 </template> 103 </template>
104 <template is="dom-if" route-path="/stylus"> 104 <template is="dom-if" route-path="/stylus" no-search$="[[!hasStylus_]]">
105 <settings-subpage 105 <settings-subpage
106 associated-control="[[$$('#stylusRow')]]" 106 associated-control="[[$$('#stylusRow')]]"
107 page-title="$i18n{stylusTitle}"> 107 page-title="$i18n{stylusTitle}">
108 <settings-stylus prefs="{{prefs}}"></settings-stylus> 108 <settings-stylus prefs="{{prefs}}"></settings-stylus>
109 </settings-subpage> 109 </settings-subpage>
110 </template> 110 </template>
111 <template is="dom-if" route-path="/display"> 111 <template is="dom-if" route-path="/display">
112 <settings-subpage 112 <settings-subpage
113 associated-control="[[$$('#displayRow')]]" 113 associated-control="[[$$('#displayRow')]]"
114 page-title="$i18n{displayTitle}"> 114 page-title="$i18n{displayTitle}">
115 <settings-display></settings-display> 115 <settings-display></settings-display>
116 </settings-subpage> 116 </settings-subpage>
117 </template> 117 </template>
118 <template is="dom-if" route-path="/storage"> 118 <template is="dom-if" route-path="/storage">
119 <settings-subpage 119 <settings-subpage
120 associated-control="[[$$('#storageRow')]]" 120 associated-control="[[$$('#storageRow')]]"
121 page-title="$i18n{storageTitle}"> 121 page-title="$i18n{storageTitle}">
122 <settings-storage></settings-storage> 122 <settings-storage></settings-storage>
123 </settings-subpage> 123 </settings-subpage>
124 </template> 124 </template>
125 </settings-animated-pages> 125 </settings-animated-pages>
126 </template> 126 </template>
127 <script src="device_page.js"></script> 127 <script src="device_page.js"></script>
128 </dom-module> 128 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698