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

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

Issue 1826903002: updated UI, default profile name, check for existing supervised user before create (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed comments Created 4 years, 8 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/profile_browser_proxy.html"> 1 <link rel="import" href="chrome://md-user-manager/profile_browser_proxy.html">
2 <link rel="import" href="chrome://md-user-manager/shared_styles.html"> 2 <link rel="import" href="chrome://md-user-manager/shared_styles.html">
3 <link rel="import" href="chrome://resources/html/polymer.html">
3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classe s/iron-flex-layout.html"> 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classe s/iron-flex-layout.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-button/paper-butt on.html">
5 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html">
6 6
7 <dom-module id="control-bar"> 7 <dom-module id="control-bar">
8 <!-- TODO(mahmadi): this format is deprecated. Change to the new 8 <!-- TODO(mahmadi): this format is deprecated. Change to the new
9 "shared styles" format. --> 9 "shared styles" format. -->
10 <link rel="import" type="css" href="chrome://md-user-manager/control_bar.css"> 10 <link rel="import" type="css" href="chrome://md-user-manager/control_bar.css">
11 <template> 11 <template>
12 <style include="shared-styles"></style> 12 <style include="shared-styles"></style>
13 <div id="login-header-bar" 13 <div id="container" class="layout horizontal end-justified">
14 class="login-header-bar layout horizontal end-justified">
15 <div id="logo"></div> 14 <div id="logo"></div>
16 <paper-button id="launchGuest" on-tap="onLaunchGuestTap_" 15 <paper-button id="launchGuest" on-tap="onLaunchGuestTap_"
17 i18n-content="browseAsGuest" hidden="[[!showGuest]]"></paper-button> 16 i18n-content="browseAsGuest" hidden="[[!showGuest]]"></paper-button>
18 <div id="add-user-header-bar-item"> 17 <paper-button id="addUser" on-tap="onAddUserTap_"
19 <paper-button id="addUser" on-tap="onAddUserTap_" 18 i18n-content="addUser" hidden="[[!showAddPerson]]"></paper-button>
20 i18n-content="addUser" hidden="[[!showAddPerson]]"></paper-button>
21 </div>
22 </div> 19 </div>
23 </template> 20 </template>
24 <script src="chrome://md-user-manager/control_bar.js"></script> 21 <script src="chrome://md-user-manager/control_bar.js"></script>
25 </dom-module> 22 </dom-module>
OLDNEW
« no previous file with comments | « chrome/browser/resources/md_user_manager/control_bar.css ('k') | chrome/browser/resources/md_user_manager/create_profile.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698