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

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

Issue 1722843002: MD user manager (html/js/css for create profile flow) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed comments #3 Created 4 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
(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_"
Dan Beam 2016/03/08 01:18:16 we generally use on-tap instead
Dan Beam 2016/03/08 01:18:16 nit: onGuestUserButtonClick_ (or Tap_)
Moe 2016/03/08 15:47:34 Done.
Moe 2016/03/08 15:47:34 I have the events and their handler names fixed in
15 i18n-content="browseAsGuest" hidden="[[!showGuest]]"></paper-button>
16 <paper-button id="add-user-button" on-click="handleAddUserClick_"
Dan Beam 2016/03/08 01:18:16 nit: onAddUserButtonClick_ (or Tap_)
Moe 2016/03/08 15:47:34 Done.
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

Powered by Google App Engine
This is Rietveld 408576698