| OLD | NEW |
| (Empty) |
| 1 // Copyright 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 | |
| 5 #include "chrome/browser/managed_mode/managed_user_registration_utility_stub.h" | |
| 6 | |
| 7 #include "base/bind.h" | |
| 8 #include "base/memory/scoped_ptr.h" | |
| 9 #include "base/strings/utf_string_conversions.h" | |
| 10 #include "google_apis/gaia/gaia_urls.h" | |
| 11 #include "google_apis/gaia/google_service_auth_error.h" | |
| 12 | |
| 13 ManagedUserRegistrationUtilityStub::ManagedUserRegistrationUtilityStub() | |
| 14 : register_was_called_(false) { | |
| 15 } | |
| 16 | |
| 17 ManagedUserRegistrationUtilityStub::~ManagedUserRegistrationUtilityStub() { | |
| 18 } | |
| 19 | |
| 20 void ManagedUserRegistrationUtilityStub::Register( | |
| 21 const std::string& managed_user_id, | |
| 22 const ManagedUserRegistrationInfo& info, | |
| 23 const RegistrationCallback& callback) { | |
| 24 DCHECK(!register_was_called_); | |
| 25 register_was_called_ = true; | |
| 26 callback_ = callback; | |
| 27 managed_user_id_ = managed_user_id; | |
| 28 display_name_ = info.name; | |
| 29 master_key_ = info.master_key; | |
| 30 } | |
| 31 | |
| 32 void ManagedUserRegistrationUtilityStub::RunSuccessCallback( | |
| 33 const std::string& token) { | |
| 34 if (callback_.is_null()) | |
| 35 return; | |
| 36 callback_.Run(GoogleServiceAuthError(GoogleServiceAuthError::NONE), token); | |
| 37 callback_.Reset(); | |
| 38 } | |
| 39 | |
| 40 void ManagedUserRegistrationUtilityStub::RunFailureCallback( | |
| 41 const GoogleServiceAuthError::State state) { | |
| 42 if (callback_.is_null()) | |
| 43 return; | |
| 44 GoogleServiceAuthError error(state); | |
| 45 callback_.Run(error, std::string()); | |
| 46 callback_.Reset(); | |
| 47 } | |
| OLD | NEW |