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

Side by Side Diff: chrome/browser/resources/chromeos/login/oobe_welcome.html

Issue 2723873003: MD WebUI: change all <dom-module> to use id="" instead of name="" (Closed)
Patch Set: Created 3 years, 9 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 <!-- Copyright 2016 The Chromium Authors. All rights reserved. 1 <!-- Copyright 2016 The Chromium Authors. All rights reserved.
2 Use of this source code is governed by a BSD-style license that can be 2 Use of this source code is governed by a BSD-style license that can be
3 found in the LICENSE file. --> 3 found in the LICENSE file. -->
4 4
5 <link rel="import" href="chrome://resources/cr_elements/network/cr_network_icon. html"> 5 <link rel="import" href="chrome://resources/cr_elements/network/cr_network_icon. html">
6 <link rel="import" href="chrome://resources/cr_elements/network/cr_network_selec t.html"> 6 <link rel="import" href="chrome://resources/cr_elements/network/cr_network_selec t.html">
7 <link rel="import" href="chrome://resources/cr_elements/network/cr_onc_types.htm l"> 7 <link rel="import" href="chrome://resources/cr_elements/network/cr_onc_types.htm l">
8 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classe s/iron-flex-layout.html"> 8 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classe s/iron-flex-layout.html">
9 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm l"> 9 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm l">
10 <link rel="import" href="chrome://resources/polymer/v1_0/iron-iconset-svg/iron-i conset-svg.html"> 10 <link rel="import" href="chrome://resources/polymer/v1_0/iron-iconset-svg/iron-i conset-svg.html">
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 <defs> 45 <defs>
46 <g id="timezone" fill="none" fill-rule="evenodd"> 46 <g id="timezone" fill="none" fill-rule="evenodd">
47 <path d="M0 0h64v64H0"></path> 47 <path d="M0 0h64v64H0"></path>
48 <path d="M31.987 5.333C17.253 5.333 5.333 17.267 5.333 32c0 14.733 11.92 26.667 26.654 26.667 14.733 0 26.68-11.934 26.68-26.667 0-14.733-11.947-26.667- 26.68-26.667zm.013 48c-11.787 0-21.333-9.546-21.333-21.333 0-11.787 9.546-21.333 21.333-21.333 11.787 0 21.333 9.546 21.333 21.333 0 11.787-9.546 21.333-21.333 21.333z" fill="#5A5A5A"></path> 48 <path d="M31.987 5.333C17.253 5.333 5.333 17.267 5.333 32c0 14.733 11.92 26.667 26.654 26.667 14.733 0 26.68-11.934 26.68-26.667 0-14.733-11.947-26.667- 26.68-26.667zm.013 48c-11.787 0-21.333-9.546-21.333-21.333 0-11.787 9.546-21.333 21.333-21.333 11.787 0 21.333 9.546 21.333 21.333 0 11.787-9.546 21.333-21.333 21.333z" fill="#5A5A5A"></path>
49 <path fill="#5A5A5A" d="M33.333 18.667h-4v16l13.987 8.4 2.013-3.28-12-7. 12"></path> 49 <path fill="#5A5A5A" d="M33.333 18.667h-4v16l13.987 8.4 2.013-3.28-12-7. 12"></path>
50 </g> 50 </g>
51 </defs> 51 </defs>
52 </svg> 52 </svg>
53 </iron-iconset-svg> 53 </iron-iconset-svg>
54 54
55 <dom-module name="oobe-welcome-md"> 55 <dom-module id="oobe-welcome-md">
56 <template> 56 <template>
57 <link rel="stylesheet" href="oobe_dialog_host.css"> 57 <link rel="stylesheet" href="oobe_dialog_host.css">
58 <link rel="stylesheet" href="oobe_welcome.css"> 58 <link rel="stylesheet" href="oobe_welcome.css">
59 <link rel="stylesheet" href="oobe_dialog_parameters.css"> 59 <link rel="stylesheet" href="oobe_dialog_parameters.css">
60 <oobe-welcome-dialog id="welcomeScreen" role="dialog" 60 <oobe-welcome-dialog id="welcomeScreen" role="dialog"
61 aria-label="[[formatMessage_('networkScreenGreeting')]]" 61 aria-label="[[formatMessage_('networkScreenGreeting')]]"
62 current-language="[[currentLanguage]]" 62 current-language="[[currentLanguage]]"
63 on-language-button-clicked="onWelcomeSelectLanguageButtonClicked_" 63 on-language-button-clicked="onWelcomeSelectLanguageButtonClicked_"
64 on-accessibility-button-clicked="onWelcomeAccessibilityButtonClicked_" 64 on-accessibility-button-clicked="onWelcomeAccessibilityButtonClicked_"
65 on-timezone-button-clicked="onWelcomeTimezoneButtonClicked_" 65 on-timezone-button-clicked="onWelcomeTimezoneButtonClicked_"
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after
214 <div class="bottom-buttons layout horizontal justified"> 214 <div class="bottom-buttons layout horizontal justified">
215 <oobe-back-button on-tap="onNetworkSelectionBackButtonPressed_"> 215 <oobe-back-button on-tap="onNetworkSelectionBackButtonPressed_">
216 </oobe-back-button> 216 </oobe-back-button>
217 <oobe-next-button disabled="[[!isConnected_]]" 217 <oobe-next-button disabled="[[!isConnected_]]"
218 on-tap="onSelectedNetworkConnected_"> 218 on-tap="onSelectedNetworkConnected_">
219 </oobe-next-button> 219 </oobe-next-button>
220 </div> 220 </div>
221 </oobe-dialog> 221 </oobe-dialog>
222 </template> 222 </template>
223 </dom-module> 223 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698