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

Unified Diff: chrome/browser/chromeos/login/managed/managed_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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chromeos/login/managed/managed_user_creation_controller.cc
diff --git a/chrome/browser/chromeos/login/managed/managed_user_creation_controller.cc b/chrome/browser/chromeos/login/managed/managed_user_creation_controller.cc
deleted file mode 100644
index f834ad348e61a1d1a6f7bdaf93b8bce5a2883392..0000000000000000000000000000000000000000
--- a/chrome/browser/chromeos/login/managed/managed_user_creation_controller.cc
+++ /dev/null
@@ -1,30 +0,0 @@
-// Copyright 2014 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "chrome/browser/chromeos/login/managed/managed_user_creation_controller.h"
-
-namespace chromeos {
-
-// static
-const int ManagedUserCreationController::kDummyAvatarIndex = -111;
-
-ManagedUserCreationController::StatusConsumer::~StatusConsumer() {}
-
-// static
-ManagedUserCreationController*
- ManagedUserCreationController::current_controller_ = NULL;
-
-ManagedUserCreationController::ManagedUserCreationController(
- ManagedUserCreationController::StatusConsumer* consumer)
- : consumer_(consumer) {
- DCHECK(!current_controller_) << "More than one controller exist.";
- current_controller_ = this;
-}
-
-ManagedUserCreationController::~ManagedUserCreationController() {
- current_controller_ = NULL;
-}
-
-} // namespace chromeos
-

Powered by Google App Engine
This is Rietveld 408576698