| OLD | NEW |
| 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 Loading... |
| 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> |
| OLD | NEW |