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

Side by Side Diff: test/ios/framework/iOSFramework/Thing.m

Issue 1887703004: Fix header map nextPowerOf2 method. (Closed) Base URL: https://chromium.googlesource.com/external/gyp.git@master
Patch Set: Add comment Created 4 years, 8 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 | « test/ios/framework/iOSFramework/Thing.h ('k') | test/ios/framework/iOSFramework/iOSFramework.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #import "Thing.h"
2
3 @interface Thing ()
4
5 @end
6
7 @implementation Thing
8
9 + (instancetype)thing {
10 static Thing* thing = nil;
11 static dispatch_once_t onceToken;
12 dispatch_once(&onceToken, ^{
13 thing = [[[self class] alloc] init];
14 });
15 return thing;
16 }
17
18 - (void)sayHello {
19 NSLog(@"Hello World");
20 }
21
22 @end
OLDNEW
« no previous file with comments | « test/ios/framework/iOSFramework/Thing.h ('k') | test/ios/framework/iOSFramework/iOSFramework.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698