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

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

Issue 1630903002: material design user manager with create profile flow (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed Dan's comments #2 Created 4 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
(Empty)
1 <link rel="import" href="chrome://md-user-manager/profile_api.html">
2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classe s/iron-flex-layout.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/polymer/polymer.html">
5
6 <dom-module id="control-bar">
7 <!-- TODO(mahmadi): this format is deprecated. Change to the new
8 "shared styles" format. -->
9 <link rel="import" type="css" href="chrome://md-user-manager/control_bar.css">
10 <template>
11 <div id="login-header-bar"
12 class="login-header-bar layout horizontal end-justified">
13 <div id="logo"></div>
14 <paper-button id="guest-user-button" on-click="handleGuestClick_"
15 i18n-content="browseAsGuest" hidden$="[[!showGuest]]"></paper-button>
16 <paper-button id="add-user-button" on-click="handleAddUserClick_"
17 i18n-content="addUser" hidden$="[[!showAddPerson]]"></paper-button>
18 </div>
19 </template>
20 <script src="chrome://md-user-manager/control_bar.js"></script>
21 </dom-module>
OLDNEW
« no previous file with comments | « chrome/browser/resources/md_user_manager/control_bar.css ('k') | chrome/browser/resources/md_user_manager/control_bar.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698