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 16 matching lines...) Expand all Loading... |
27 -webkit-margin-end: 12px; | 27 -webkit-margin-end: 12px; |
28 -webkit-margin-start: 4px; | 28 -webkit-margin-start: 4px; |
29 height: 24px; | 29 height: 24px; |
30 width: 24px; | 30 width: 24px; |
31 } | 31 } |
32 </style> | 32 </style> |
33 <settings-animated-pages id="pages" section="internet" | 33 <settings-animated-pages id="pages" section="internet" |
34 focus-config="[[focusConfig_]]"> | 34 focus-config="[[focusConfig_]]"> |
35 <neon-animatable route-path="default"> | 35 <neon-animatable route-path="default"> |
36 <network-summary default-network="{{defaultNetwork}}" | 36 <network-summary default-network="{{defaultNetwork}}" |
37 device-states="{{deviceStates}}" | 37 device-states="{{deviceStates}}" |
38 networking-private="[[networkingPrivate]]"> | 38 networking-private="[[networkingPrivate]]"> |
39 </network-summary> | 39 </network-summary> |
40 <template is="dom-if" if="[[allowAddConnection_(globalPolicy_)]]"> | 40 <template is="dom-if" if="[[allowAddConnection_(globalPolicy_)]]"> |
41 <div actionable class="settings-box two-line" | 41 <div actionable class="settings-box two-line" |
42 on-tap="onExpandAddConnectionsTap_"> | 42 on-tap="onExpandAddConnectionsTap_"> |
43 <div class="start layout horizontal center"> | 43 <div class="start layout horizontal center"> |
44 <div>$i18n{internetAddConnection}</div> | 44 <div>$i18n{internetAddConnection}</div> |
45 </div> | 45 </div> |
46 <cr-expand-button alt="$i18n{internetAddConnectionExpandA11yLabel}" | 46 <cr-expand-button alt="$i18n{internetAddConnectionExpandA11yLabel}" |
47 id="expandAddConnections" expanded="{{addConnectionExpanded_}}"> | 47 id="expandAddConnections" expanded="{{addConnectionExpanded_}}"> |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
112 networking-private="[[networkingPrivate]]" | 112 networking-private="[[networkingPrivate]]" |
113 show-spinner="{{showSpinner_}}"> | 113 show-spinner="{{showSpinner_}}"> |
114 </settings-bluetooth-subpage> | 114 </settings-bluetooth-subpage> |
115 </settings-subpage> | 115 </settings-subpage> |
116 </template> | 116 </template> |
117 | 117 |
118 </settings-animated-pages> | 118 </settings-animated-pages> |
119 </template> | 119 </template> |
120 <script src="internet_page.js"></script> | 120 <script src="internet_page.js"></script> |
121 </dom-module> | 121 </dom-module> |
OLD | NEW |