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

Side by Side Diff: chrome/browser/resources/chromeos/login/oobe_hid_detection.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 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classe s/iron-flex-layout.html"> 1 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classe s/iron-flex-layout.html">
2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm l"> 2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm l">
3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-iconset-svg/iron-i conset-svg.html"> 3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-iconset-svg/iron-i conset-svg.html">
4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-checkbox/paper-ch eckbox.html"> 4 <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-styles/color.html "> 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.html ">
6 6
7 <iron-iconset-svg name="oobe-hid-detection" size="24"> 7 <iron-iconset-svg name="oobe-hid-detection" size="24">
8 <svg> 8 <svg>
9 <defs> 9 <defs>
10 <g id="bluetooth"><path d="M17.71 7.71L12 2h-1v7.59L6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 11 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM13 5.83l1.88 1.88L13 9.59V5.83zm1.88 10.46L13 18.17v-3.76l1.88 1.88z"></path></g> 10 <g id="bluetooth"><path d="M17.71 7.71L12 2h-1v7.59L6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 11 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM13 5.83l1.88 1.88L13 9.59V5.83zm1.88 10.46L13 18.17v-3.76l1.88 1.88z"></path></g>
11 </defs> 11 </defs>
12 </svg> 12 </svg>
13 </iron-iconset-svg> 13 </iron-iconset-svg>
14 14
15 <dom-module name="oobe-hid-detection-md"> 15 <dom-module id="oobe-hid-detection-md">
16 <template> 16 <template>
17 <link rel="stylesheet" href="oobe_hid_detection.css"> 17 <link rel="stylesheet" href="oobe_hid_detection.css">
18 <link rel="stylesheet" href="oobe_dialog_parameters.css"> 18 <link rel="stylesheet" href="oobe_dialog_parameters.css">
19 <link rel="stylesheet" href="../../options/chromeos/bluetooth.css"> 19 <link rel="stylesheet" href="../../options/chromeos/bluetooth.css">
20 <oobe-dialog has-buttons> 20 <oobe-dialog has-buttons>
21 <iron-icon icon="oobe-hid-detection:bluetooth" class="oobe-icon"> 21 <iron-icon icon="oobe-hid-detection:bluetooth" class="oobe-icon">
22 </iron-icon> 22 </iron-icon>
23 <div class="header"> 23 <div class="header">
24 <h1 class="title" i18n-content="hidDetectionInvitation"></h1> 24 <h1 class="title" i18n-content="hidDetectionInvitation"></h1>
25 <div class="subtitle" i18n-content="hidDetectionPrerequisites"></div> 25 <div class="subtitle" i18n-content="hidDetectionPrerequisites"></div>
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 <oobe-text-button id="hid-continue-button" 106 <oobe-text-button id="hid-continue-button"
107 inverse on-tap="onHIDContinueTap_" 107 inverse on-tap="onHIDContinueTap_"
108 disabled="[[continueButtonDisabled]]"> 108 disabled="[[continueButtonDisabled]]">
109 <div i18n-content="hidDetectionContinue" id="continue-button-text"> 109 <div i18n-content="hidDetectionContinue" id="continue-button-text">
110 </div> 110 </div>
111 </oobe-text-button> 111 </oobe-text-button>
112 </div> 112 </div>
113 </oobe-dialog> 113 </oobe-dialog>
114 </template> 114 </template>
115 </dom-module> 115 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698