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

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

Issue 1406023003: Elim cr_elements/v1_0 subdirectory (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 2 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/polymer/v1_0/polymer/polymer.html"> 1 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html">
2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/iron-icons.h tml"> 2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/iron-icons.h tml">
3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/notification -icons.html"> 3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/notification -icons.html">
4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html"> 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html">
5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-checkbox/paper-ch eckbox.html"> 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-checkbox/paper-ch eckbox.html">
6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-dialog/paper-dial og.html"> 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-dialog/paper-dial og.html">
7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input .html"> 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input .html">
8 <link rel="import" href="chrome://resources/cr_elements/v1_0/network/cr_onc_type s.html"> 8 <link rel="import" href="chrome://resources/cr_elements/network/cr_onc_types.htm l">
9 <link rel="import" href="network_property_list.html"> 9 <link rel="import" href="network_property_list.html">
10 10
11 <dom-module id="network-siminfo"> 11 <dom-module id="network-siminfo">
12 <link rel="import" type="css" href="network_siminfo.css"> 12 <link rel="import" type="css" href="network_siminfo.css">
13 <template> 13 <template>
14 <div id="outerDiv" class="layout vertical"> 14 <div id="outerDiv" class="layout vertical">
15 <div class="layout horizontal center" 15 <div class="layout horizontal center"
16 hidden$="[[networkProperties.Cellular.SIMPresent]]"> 16 hidden$="[[networkProperties.Cellular.SIMPresent]]">
17 <!-- SIM missing UI --> 17 <!-- SIM missing UI -->
18 <iron-icon icon="notification:sim-card-alert"></iron-icon> 18 <iron-icon icon="notification:sim-card-alert"></iron-icon>
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
150 >[[getErrorMsg_(error)]] 150 >[[getErrorMsg_(error)]]
151 </span> 151 </span>
152 <span>[[getRetriesLeftMsg_(networkProperties)]]</span> 152 <span>[[getRetriesLeftMsg_(networkProperties)]]</span>
153 </div> 153 </div>
154 </div> 154 </div>
155 </paper-dialog> 155 </paper-dialog>
156 156
157 </template> 157 </template>
158 <script src="network_siminfo.js"></script> 158 <script src="network_siminfo.js"></script>
159 </dom-module> 159 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698