OLD | NEW |
(Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef IOS_CHROME_BROWSER_SIGNIN_SIGNIN_UTIL_H_ |
| 6 #define IOS_CHROME_BROWSER_SIGNIN_SIGNIN_UTIL_H_ |
| 7 |
| 8 #include <Foundation/Foundation.h> |
| 9 |
| 10 #include <set> |
| 11 #include <string> |
| 12 |
| 13 @class ChromeIdentity; |
| 14 |
| 15 // Returns an NSArray of |scopes| as NSStrings. |
| 16 NSArray* GetScopeArray(const std::set<std::string>& scopes); |
| 17 |
| 18 // Returns the canonicalized and sanitized user email for the given identity. |
| 19 // Returns nil if the identity does not have any user email. |
| 20 std::string GetCanonicalizedEmailForIdentity(ChromeIdentity* identity); |
| 21 |
| 22 // Returns whether the given signin |error| should be handled. |
| 23 // |
| 24 // Note that cancel errors and errors handled internally by the signin component |
| 25 // should not be handled. |
| 26 bool ShouldHandleSigninError(NSError* error); |
| 27 |
| 28 #endif // IOS_CHROME_BROWSER_SIGNIN_SIGNIN_UTIL_H_ |
OLD | NEW |