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

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

Issue 2964383002: [ObjC ARC] Converts ios/public/provider/chrome/browser/signin:signin to ARC. (Closed)
Patch Set: comments Created 3 years, 5 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
OLDNEW
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698