OLD | NEW |
(Empty) | |
| 1 // Copyright 2015 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 "ios/public/provider/chrome/browser/signin/signin_error_provider.h" |
| 6 |
| 7 namespace ios { |
| 8 |
| 9 namespace { |
| 10 SigninErrorProvider* g_signin_error_provider = nullptr; |
| 11 } |
| 12 |
| 13 void SetSigninErrorProvider(SigninErrorProvider* provider) { |
| 14 g_signin_error_provider = provider; |
| 15 } |
| 16 |
| 17 SigninErrorProvider* GetSigninErrorProvider() { |
| 18 return g_signin_error_provider; |
| 19 } |
| 20 |
| 21 SigninErrorProvider::SigninErrorProvider() {} |
| 22 |
| 23 SigninErrorProvider::~SigninErrorProvider() {} |
| 24 |
| 25 SigninErrorCategory SigninErrorProvider::GetErrorCategory(NSError* error) { |
| 26 return SigninErrorCategory::UNKNOWN_ERROR; |
| 27 } |
| 28 |
| 29 bool SigninErrorProvider::IsCanceled(NSError* error) { |
| 30 return false; |
| 31 } |
| 32 |
| 33 NSString* SigninErrorProvider::GetInvalidGrantJsonErrorKey() { |
| 34 return @"invalid_grant_error_key"; |
| 35 } |
| 36 |
| 37 NSString* SigninErrorProvider::GetSigninErrorDomain() { |
| 38 return @"signin_error_domain"; |
| 39 } |
| 40 |
| 41 int SigninErrorProvider::GetCode(SigninError error) { |
| 42 return 0; |
| 43 } |
| 44 |
| 45 } // namesace ios |
OLD | NEW |