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

Side by Side Diff: chrome/browser/chromeos/login/supervised/supervised_user_creation_controller.cc

Issue 393343002: Rename "managed (mode|user)" to "supervised user" (part 7) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: more alphabetize (and rebase again) Created 6 years, 5 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright 2014 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
5 #include "chrome/browser/chromeos/login/supervised/supervised_user_creation_cont roller.h"
6
7 namespace chromeos {
8
9 // static
10 const int SupervisedUserCreationController::kDummyAvatarIndex = -111;
11
12 SupervisedUserCreationController::StatusConsumer::~StatusConsumer() {}
13
14 // static
15 SupervisedUserCreationController*
16 SupervisedUserCreationController::current_controller_ = NULL;
17
18 SupervisedUserCreationController::SupervisedUserCreationController(
19 SupervisedUserCreationController::StatusConsumer* consumer)
20 : consumer_(consumer) {
21 DCHECK(!current_controller_) << "More than one controller exist.";
22 current_controller_ = this;
23 }
24
25 SupervisedUserCreationController::~SupervisedUserCreationController() {
26 current_controller_ = NULL;
27 }
28
29 } // namespace chromeos
30
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698