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.
5 #include "chrome/browser/managed_mode/managed_user_registration_utility_stub.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"
13 ManagedUserRegistrationUtilityStub::ManagedUserRegistrationUtilityStub()
14 : register_was_called_(false) {
17 ManagedUserRegistrationUtilityStub::~ManagedUserRegistrationUtilityStub() {
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;
27 managed_user_id_
= managed_user_id
;
28 display_name_
= info
.name
;
29 master_key_
= info
.master_key
;
32 void ManagedUserRegistrationUtilityStub::RunSuccessCallback(
33 const std::string
& token
) {
34 if (callback_
.is_null())
36 callback_
.Run(GoogleServiceAuthError(GoogleServiceAuthError::NONE
), token
);
40 void ManagedUserRegistrationUtilityStub::RunFailureCallback(
41 const GoogleServiceAuthError::State state
) {
42 if (callback_
.is_null())
44 GoogleServiceAuthError
error(state
);
45 callback_
.Run(error
, std::string());