Today's Menu  Portugal
journal and plan nutrition
Classes | Functions | Variables
GIDSignIn.h File Reference
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
Include dependency graph for GIDSignIn.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

protocol  <GIDSignInDelegate >
 
protocol  <GIDSignInUIDelegate >
 
class  GIDSignIn
 

Functions

typedef NS_ENUM (NSInteger, GIDSignInErrorCode)
 

Variables

NSString *const kGIDSignInErrorDomain
 

Function Documentation

◆ NS_ENUM()

typedef NS_ENUM ( NSInteger  ,
GIDSignInErrorCode   
)

Definition at line 21 of file GIDSignIn.h.

21  {
22  // Indicates an unknown error has occured.
23  kGIDSignInErrorCodeUnknown = -1,
24  // Indicates a problem reading or writing to the application keychain.
25  kGIDSignInErrorCodeKeychain = -2,
26  // Indicates no appropriate applications are installed on the user's device which can handle
27  // sign-in. This code will only ever be returned if using webview and switching to browser have
28  // both been disabled.
29  kGIDSignInErrorCodeNoSignInHandlersInstalled = -3,
30  // Indicates there are no auth tokens in the keychain. This error code will be returned by
31  // signInSilently if the user has never signed in before with the given scopes, or if they have
32  // since signed out.
33  kGIDSignInErrorCodeHasNoAuthInKeychain = -4,
34  // Indicates the user canceled the sign in request.
35  kGIDSignInErrorCodeCanceled = -5,
36 };

Variable Documentation

◆ kGIDSignInErrorDomain

NSString* const kGIDSignInErrorDomain