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

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

Issue 2689053002: MD Settings: label and describe a bunch of subpage/open-in-new buttons (Closed)
Patch Set: downloadSize -> downloadsSize Created 3 years, 10 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/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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 <div>$i18n{internetAddConnection}</div> 45 <div>$i18n{internetAddConnection}</div>
46 </div> 46 </div>
47 <cr-expand-button alt="$i18n{internetAddConnectionExpandA11yLabel}" 47 <cr-expand-button alt="$i18n{internetAddConnectionExpandA11yLabel}"
48 id="expandAddConnections" expanded="{{addConnectionExpanded_}}"> 48 id="expandAddConnections" expanded="{{addConnectionExpanded_}}">
49 </cr-expand-button> 49 </cr-expand-button>
50 </div> 50 </div>
51 <template is="dom-if" if="[[addConnectionExpanded_]]"> 51 <template is="dom-if" if="[[addConnectionExpanded_]]">
52 <div actionable class="settings-box continuation center" 52 <div actionable class="settings-box continuation center"
53 on-tap="onAddWiFiTap_"> 53 on-tap="onAddWiFiTap_">
54 <div class="start add-no-icon">$i18n{internetAddWiFi}</div> 54 <div class="start add-no-icon">$i18n{internetAddWiFi}</div>
55 <button class="icon-external" is="paper-icon-button-light"> 55 <button class="icon-external" is="paper-icon-button-light"
56 aria-label="$i18n{internetAddWiFi}">
56 </button> 57 </button>
57 </div> 58 </div>
58 <div actionable class="settings-box continuation center" 59 <div actionable class="settings-box continuation center"
59 on-tap="onAddVPNTap_"> 60 on-tap="onAddVPNTap_">
60 <div class="start add-no-icon">$i18n{internetAddVPN}</div> 61 <div class="start add-no-icon">$i18n{internetAddVPN}</div>
61 <button class="icon-external" is="paper-icon-button-light"> 62 <button class="icon-external" is="paper-icon-button-light"
63 aria-label="$i18n{internetAddVPN}">
62 </button> 64 </button>
63 </div> 65 </div>
64 <template is="dom-repeat" items="[[thirdPartyVpnProviders_]]"> 66 <template is="dom-repeat" items="[[thirdPartyVpnProviders_]]">
65 <div actionable class="settings-box continuation center" 67 <div actionable class="settings-box continuation center"
66 on-tap="onAddThirdPartyVpnTap_" provider="[[item]]"> 68 on-tap="onAddThirdPartyVpnTap_" provider="[[item]]">
67 <div class="start add-no-icon"> 69 <div class="start add-no-icon">
68 [[getAddThirdParrtyVpnLabel_(item)]] 70 [[getAddThirdParrtyVpnLabel_(item)]]
69 </div> 71 </div>
70 </div> 72 </div>
71 </template> 73 </template>
(...skipping 21 matching lines...) Expand all
93 network-type="[[knownNetworksType_]]" 95 network-type="[[knownNetworksType_]]"
94 on-show-detail="onShowDetail_" 96 on-show-detail="onShowDetail_"
95 networking-private="[[networkingPrivate]]"> 97 networking-private="[[networkingPrivate]]">
96 </settings-internet-known-networks-page> 98 </settings-internet-known-networks-page>
97 </settings-subpage> 99 </settings-subpage>
98 </template> 100 </template>
99 </settings-animated-pages> 101 </settings-animated-pages>
100 </template> 102 </template>
101 <script src="internet_page.js"></script> 103 <script src="internet_page.js"></script>
102 </dom-module> 104 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698