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

Unified Diff: chrome/browser/chromeos/login/existing_user_controller.cc

Issue 6821075: Chrome-side lockbox bindings (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: CL RC1. Created 9 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chromeos/login/existing_user_controller.cc
diff --git a/chrome/browser/chromeos/login/existing_user_controller.cc b/chrome/browser/chromeos/login/existing_user_controller.cc
index dcba46bef0b602f17da3779e4dadc411037d0381..79456323a9734542ab2232349a18161d45105978 100644
--- a/chrome/browser/chromeos/login/existing_user_controller.cc
+++ b/chrome/browser/chromeos/login/existing_user_controller.cc
@@ -244,7 +244,8 @@ void ExistingUserController::OnStartEnterpriseEnrollment() {
void ExistingUserController::OnEnrollmentOwnershipCheckCompleted(
OwnershipService::Status status) {
- if (status == OwnershipService::OWNERSHIP_NONE) {
+ if (status == OwnershipService::OWNERSHIP_NONE ||
+ status == OwnershipService::OWNERSHIP_ENTERPRISE) {
host_->StartWizard(WizardController::kEnterpriseEnrollmentScreenName,
NULL, GURL());
login_display_->OnFadeOut();

Powered by Google App Engine
This is Rietveld 408576698