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

Side by Side Diff: chrome/browser/resources/settings/people_page/password_prompt_dialog.html

Issue 2664503004: MD Settings: Make all HTML import href's relative. (Closed)
Patch Set: resolve more conflicts 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_dialog/cr_dialog.html "> 1 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html ">
2 <link rel="import" href="chrome://resources/html/polymer.html"> 2 <link rel="import" href="chrome://resources/html/polymer.html">
3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html"> 3 <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-input/paper-input .html"> 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input .html">
5 <link rel="import" href="/people_page/lock_screen_constants.html"> 5 <link rel="import" href="lock_screen_constants.html">
6 <link rel="import" href="/settings_shared_css.html"> 6 <link rel="import" href="../settings_shared_css.html">
7 <link rel="import" href="/settings_shared_css.html"> 7 <link rel="import" href="../settings_shared_css.html">
8 8
9 <dom-module id="settings-password-prompt-dialog"> 9 <dom-module id="settings-password-prompt-dialog">
10 <template> 10 <template>
11 <style include="settings-shared"> 11 <style include="settings-shared">
12 #passwordInput { 12 #passwordInput {
13 display: inline-block; 13 display: inline-block;
14 } 14 }
15 15
16 .settings-box { 16 .settings-box {
17 padding: 0; 17 padding: 0;
(...skipping 26 matching lines...) Expand all
44 disabled$="[[!enableConfirm_(password_, 44 disabled$="[[!enableConfirm_(password_,
45 passwordInvalid_)]]"> 45 passwordInvalid_)]]">
46 $i18n{confirm} 46 $i18n{confirm}
47 </paper-button> 47 </paper-button>
48 </div> 48 </div>
49 </div> 49 </div>
50 </dialog> 50 </dialog>
51 </template> 51 </template>
52 <script src="password_prompt_dialog.js"></script> 52 <script src="password_prompt_dialog.js"></script>
53 </dom-module> 53 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698