OLD | NEW |
1 <link rel="import" href="chrome://resources/cr_elements/cr_expand_button/cr_expa
nd_button.html"> | 1 <link rel="import" href="chrome://resources/cr_elements/cr_expand_button/cr_expa
nd_button.html"> |
2 <link rel="import" href="chrome://resources/cr_elements/icons.html"> | 2 <link rel="import" href="chrome://resources/cr_elements/icons.html"> |
3 <link rel="import" href="chrome://resources/cr_elements/network/cr_onc_types.htm
l"> | 3 <link rel="import" href="chrome://resources/cr_elements/network/cr_onc_types.htm
l"> |
4 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> | 4 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> |
5 <link rel="import" href="chrome://resources/html/polymer.html"> | 5 <link rel="import" href="chrome://resources/html/polymer.html"> |
6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm
l"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm
l"> |
7 <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/neon-animation/neon-ani
matable.html"> |
8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button-light.html"> | 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button-light.html"> |
9 <link rel="import" href="../prefs/prefs.html"> | 9 <link rel="import" href="../prefs/prefs.html"> |
10 <link rel="import" href="../route.html"> | 10 <link rel="import" href="../route.html"> |
(...skipping 12 matching lines...) Loading... |
23 -webkit-margin-end: 12px; | 23 -webkit-margin-end: 12px; |
24 -webkit-margin-start: 4px; | 24 -webkit-margin-start: 4px; |
25 height: 24px; | 25 height: 24px; |
26 width: 24px; | 26 width: 24px; |
27 } | 27 } |
28 </style> | 28 </style> |
29 <settings-animated-pages id="pages" section="internet" | 29 <settings-animated-pages id="pages" section="internet" |
30 focus-config="[[focusConfig_]]"> | 30 focus-config="[[focusConfig_]]"> |
31 <neon-animatable route-path="default"> | 31 <neon-animatable route-path="default"> |
32 <network-summary default-network="{{defaultNetwork}}" | 32 <network-summary default-network="{{defaultNetwork}}" |
33 device-states="{{deviceStates}}" | 33 device-states="{{deviceStates}}" |
34 networking-private="[[networkingPrivate]]"> | 34 networking-private="[[networkingPrivate]]"> |
35 </network-summary> | 35 </network-summary> |
36 <template is="dom-if" if="[[allowAddConnection_(globalPolicy_)]]"> | 36 <template is="dom-if" if="[[allowAddConnection_(globalPolicy_)]]"> |
37 <div actionable class="settings-box two-line" | 37 <div actionable class="settings-box two-line" |
38 on-tap="onExpandAddConnectionsTap_"> | 38 on-tap="onExpandAddConnectionsTap_"> |
39 <div class="start layout horizontal center"> | 39 <div class="start layout horizontal center"> |
40 <div>$i18n{internetAddConnection}</div> | 40 <div>$i18n{internetAddConnection}</div> |
41 </div> | 41 </div> |
42 <cr-expand-button alt="$i18n{internetAddConnectionExpandA11yLabel}" | 42 <cr-expand-button alt="$i18n{internetAddConnectionExpandA11yLabel}" |
43 id="expandAddConnections" expanded="{{addConnectionExpanded_}}"> | 43 id="expandAddConnections" expanded="{{addConnectionExpanded_}}"> |
(...skipping 66 matching lines...) Loading... |
110 networking-private="[[networkingPrivate]]" | 110 networking-private="[[networkingPrivate]]" |
111 show-spinner="{{showSpinner_}}"> | 111 show-spinner="{{showSpinner_}}"> |
112 </settings-bluetooth-subpage> | 112 </settings-bluetooth-subpage> |
113 </settings-subpage> | 113 </settings-subpage> |
114 </template> | 114 </template> |
115 | 115 |
116 </settings-animated-pages> | 116 </settings-animated-pages> |
117 </template> | 117 </template> |
118 <script src="internet_page.js"></script> | 118 <script src="internet_page.js"></script> |
119 </dom-module> | 119 </dom-module> |
OLD | NEW |