| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 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 #import "ios/public/provider/chrome/browser/signin/chrome_identity.h" | 5 #import "ios/public/provider/chrome/browser/signin/chrome_identity.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 | 8 |
| 9 #if !defined(__has_feature) || !__has_feature(objc_arc) |
| 10 #error "This file requires ARC support." |
| 11 #endif |
| 12 |
| 9 @implementation ChromeIdentity | 13 @implementation ChromeIdentity |
| 10 | 14 |
| 11 - (NSString*)userEmail { | 15 - (NSString*)userEmail { |
| 12 NOTREACHED(); | 16 NOTREACHED(); |
| 13 return nil; | 17 return nil; |
| 14 } | 18 } |
| 15 | 19 |
| 16 - (NSString*)gaiaID { | 20 - (NSString*)gaiaID { |
| 17 NOTREACHED(); | 21 NOTREACHED(); |
| 18 return nil; | 22 return nil; |
| 19 } | 23 } |
| 20 | 24 |
| 21 - (NSString*)userFullName { | 25 - (NSString*)userFullName { |
| 22 NOTREACHED(); | 26 NOTREACHED(); |
| 23 return nil; | 27 return nil; |
| 24 } | 28 } |
| 25 | 29 |
| 26 - (NSString*)hashedGaiaID { | 30 - (NSString*)hashedGaiaID { |
| 27 NOTREACHED(); | 31 NOTREACHED(); |
| 28 return nil; | 32 return nil; |
| 29 } | 33 } |
| 30 | 34 |
| 31 @end | 35 @end |
| OLD | NEW |