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

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

Issue 1842703004: Revert "MD user manager (learn more page, user manager tutorial)" (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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">
3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classe s/iron-flex-layout.html"> 2 <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"> 3 <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"> 4 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html">
6 5
7 <dom-module id="control-bar"> 6 <dom-module id="control-bar">
8 <!-- TODO(mahmadi): this format is deprecated. Change to the new 7 <!-- TODO(mahmadi): this format is deprecated. Change to the new
9 "shared styles" format. --> 8 "shared styles" format. -->
10 <link rel="import" type="css" href="chrome://md-user-manager/control_bar.css"> 9 <link rel="import" type="css" href="chrome://md-user-manager/control_bar.css">
11 <template> 10 <template>
12 <style include="shared-styles"></style>
13 <div id="login-header-bar" 11 <div id="login-header-bar"
14 class="login-header-bar layout horizontal end-justified"> 12 class="login-header-bar layout horizontal end-justified">
15 <div id="logo"></div> 13 <div id="logo"></div>
16 <paper-button id="lauchGuest" on-tap="onLauchGuestTap_" 14 <paper-button id="lauchGuest" on-tap="onLauchGuestTap_"
17 i18n-content="browseAsGuest" hidden="[[!showGuest]]"></paper-button> 15 i18n-content="browseAsGuest" hidden="[[!showGuest]]"></paper-button>
18 <div id="add-user-header-bar-item"> 16 <div id="add-user-header-bar-item">
19 <paper-button id="addUser" on-tap="onAddUserTap_" 17 <paper-button id="addUser" on-tap="onAddUserTap_"
20 i18n-content="addUser" hidden="[[!showAddPerson]]"></paper-button> 18 i18n-content="addUser" hidden="[[!showAddPerson]]"></paper-button>
21 </div> 19 </div>
22 </div> 20 </div>
23 </template> 21 </template>
24 <script src="chrome://md-user-manager/control_bar.js"></script> 22 <script src="chrome://md-user-manager/control_bar.js"></script>
25 </dom-module> 23 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698