Disable view source for Developer Tools.
[chromium-blink-merge.git] / chrome / browser / managed_mode / managed_user_registration_utility_stub.cc
blob114964973ac5d11316027d9350a15557d2b69d6c
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"
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"
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;
26 callback_ = callback;
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())
35 return;
36 callback_.Run(GoogleServiceAuthError(GoogleServiceAuthError::NONE), token);
37 callback_.Reset();
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();