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

Side by Side Diff: chrome/browser/resources/user_chooser/user_chooser.js

Issue 16104008: First try at a user management screen for the desktop (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review comments Created 7 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
(Empty)
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 <include src="user_chooser_common.js"></include>
Nikita (slow) 2013/06/14 16:51:35 Move this include to html file.
5
6 cr.define('UserChooser', function() {
7 'use strict';
8
9 function initialize() {
10 login.AccountPickerScreen.register();
11 cr.ui.Bubble.decorate($('bubble'));
12 login.HeaderBar.decorate($('login-header-bar'));
13 chrome.send('userChooserInitialize');
14 }
15
16 // Return an object with all of the exports.
17 return {
18 initialize: initialize
19 };
20 });
21
22 document.addEventListener('DOMContentLoaded', UserChooser.initialize);
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698