Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(252)

Side by Side Diff: ios/public/provider/chrome/browser/signin/signin_error_provider.mm

Issue 1252323006: [iOS] Upstream //ios/chrome/browser/signin/signin_util (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add SigninErrorProvider Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ios/public/provider/chrome/browser/signin/signin_error_provider.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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
OLDNEW
« no previous file with comments | « ios/public/provider/chrome/browser/signin/signin_error_provider.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698