| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_signin_manager_wrapper.h" | 5 #include "chrome/browser/managed_mode/managed_user_signin_manager_wrapper.h" |
| 6 | 6 |
| 7 #include "chrome/browser/profiles/profile.h" | 7 #include "chrome/browser/profiles/profile.h" |
| 8 #include "chrome/browser/signin/signin_manager_base.h" | 8 #include "chrome/browser/signin/signin_manager_base.h" |
| 9 | 9 |
| 10 #if defined(ENABLE_MANAGED_USERS) | 10 #if defined(ENABLE_MANAGED_USERS) |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 if (original_->profile()->IsManaged()) { | 39 if (original_->profile()->IsManaged()) { |
| 40 #if defined(ENABLE_MANAGED_USERS) | 40 #if defined(ENABLE_MANAGED_USERS) |
| 41 return managed_users::kManagedUserPseudoEmail; | 41 return managed_users::kManagedUserPseudoEmail; |
| 42 #else | 42 #else |
| 43 NOTREACHED(); | 43 NOTREACHED(); |
| 44 #endif | 44 #endif |
| 45 } | 45 } |
| 46 | 46 |
| 47 return original_->GetAuthenticatedAccountId(); | 47 return original_->GetAuthenticatedAccountId(); |
| 48 } | 48 } |
| OLD | NEW |