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

Side by Side Diff: chrome/browser/resources/md_user_manager/error_dialog.html

Issue 2053723002: MD User Manager: Overhaul Urls (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@md-user-manager-locked-dialogs
Patch Set: Changed Urls for html resources to root-relative Urls Created 4 years, 6 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://md-user-manager/shared_styles.html"> 1 <link rel="import" href="/shared_styles.html">
2 <link rel="import" href="chrome://md-user-manager/user_manager_dialog.html"> 2 <link rel="import" href="/user_manager_dialog.html">
3 <link rel="import" href="chrome://resources/html/polymer.html"> 3 <link rel="import" href="chrome://resources/html/polymer.html">
4 4
5 <dom-module id="error-dialog"> 5 <dom-module id="error-dialog">
6 <template> 6 <template>
7 <style include="shared-styles"> 7 <style include="shared-styles">
8 #dialog { 8 #dialog {
9 --user-manager-dialog-title-bar: { 9 --user-manager-dialog-title-bar: {
10 border-bottom-width: 0; 10 border-bottom-width: 0;
11 }; 11 };
12 } 12 }
13 #message { 13 #message {
14 white-space: pre-wrap; 14 white-space: pre-wrap;
15 word-wrap: break-word; 15 word-wrap: break-word;
16 margin-bottom: 52px; 16 margin-bottom: 52px;
17 } 17 }
18 </style> 18 </style>
19 <user-manager-dialog id="dialog"> 19 <user-manager-dialog id="dialog">
20 <div class="body"> 20 <div class="body">
21 <div id="message">[[message_]]</div> 21 <div id="message">[[message_]]</div>
22 </div> 22 </div>
23 </user-manager-dialog> 23 </user-manager-dialog>
24 </template> 24 </template>
25 <!-- TODO(mahmadi): change these Urls to relative ones. e.g., 25 <script src="error_dialog.js"></script>
26 chrome://md-user-manager/error_dialog.js -> error_dialog.js -->
27 <script src="chrome://md-user-manager/error_dialog.js"></script>
28 </dom-module> 26 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698