OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/browser/managed_mode/managed_user_registration_utility_stub.h" | 5 #include "chrome/browser/managed_mode/managed_user_registration_utility_stub.h" |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
9 #include "base/strings/utf_string_conversions.h" | 9 #include "base/strings/utf_string_conversions.h" |
10 #include "google_apis/gaia/gaia_urls.h" | 10 #include "google_apis/gaia/gaia_urls.h" |
11 #include "google_apis/gaia/google_service_auth_error.h" | 11 #include "google_apis/gaia/google_service_auth_error.h" |
12 | 12 |
13 ManagedUserRegistrationUtilityStub::ManagedUserRegistrationUtilityStub() | 13 ManagedUserRegistrationUtilityStub::ManagedUserRegistrationUtilityStub() |
14 : register_was_called_(false) { | 14 : register_was_called_(false) { |
15 } | 15 } |
16 | 16 |
17 ManagedUserRegistrationUtilityStub::~ManagedUserRegistrationUtilityStub() { | 17 ManagedUserRegistrationUtilityStub::~ManagedUserRegistrationUtilityStub() { |
18 } | 18 } |
19 | 19 |
20 void ManagedUserRegistrationUtilityStub::Register( | 20 void ManagedUserRegistrationUtilityStub::Register( |
21 const std::string& managed_user_id, | 21 const std::string& managed_user_id, |
| 22 bool update_avatar, |
22 const ManagedUserRegistrationInfo& info, | 23 const ManagedUserRegistrationInfo& info, |
23 const RegistrationCallback& callback) { | 24 const RegistrationCallback& callback) { |
24 DCHECK(!register_was_called_); | 25 DCHECK(!register_was_called_); |
25 register_was_called_ = true; | 26 register_was_called_ = true; |
26 callback_ = callback; | 27 callback_ = callback; |
27 managed_user_id_ = managed_user_id; | 28 managed_user_id_ = managed_user_id; |
28 display_name_ = info.name; | 29 display_name_ = info.name; |
29 master_key_ = info.master_key; | 30 master_key_ = info.master_key; |
| 31 update_avatar_ = update_avatar; |
30 } | 32 } |
31 | 33 |
32 void ManagedUserRegistrationUtilityStub::RunSuccessCallback( | 34 void ManagedUserRegistrationUtilityStub::RunSuccessCallback( |
33 const std::string& token) { | 35 const std::string& token) { |
34 if (callback_.is_null()) | 36 if (callback_.is_null()) |
35 return; | 37 return; |
36 callback_.Run(GoogleServiceAuthError(GoogleServiceAuthError::NONE), token); | 38 callback_.Run(GoogleServiceAuthError(GoogleServiceAuthError::NONE), token); |
37 callback_.Reset(); | 39 callback_.Reset(); |
38 } | 40 } |
39 | 41 |
40 void ManagedUserRegistrationUtilityStub::RunFailureCallback( | 42 void ManagedUserRegistrationUtilityStub::RunFailureCallback( |
41 const GoogleServiceAuthError::State state) { | 43 const GoogleServiceAuthError::State state) { |
42 if (callback_.is_null()) | 44 if (callback_.is_null()) |
43 return; | 45 return; |
44 GoogleServiceAuthError error(state); | 46 GoogleServiceAuthError error(state); |
45 callback_.Run(error, std::string()); | 47 callback_.Run(error, std::string()); |
46 callback_.Reset(); | 48 callback_.Reset(); |
47 } | 49 } |
OLD | NEW |