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

Side by Side Diff: test/ios/extension/ActionExtension/ActionViewController.m

Issue 376603002: This CL adds support for extension in GYP. (Closed) Base URL: https://chromium.googlesource.com/external/gyp.git@master
Patch Set: Created 6 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
(Empty)
1 //
2 // ActionViewController.m
justincohen 2014/07/07 14:13:58 wrong header on all files.
olivierrobin 2014/07/07 14:36:36 Done.
3 // ActionExtension
4 //
5 // Created by Olivier Robin on 6/27/14.
6 // Copyright (c) 2014 Olivier Robin. All rights reserved.
7 //
8
9 #import "ActionViewController.h"
10 #import <MobileCoreServices/MobileCoreServices.h>
11
12 @interface ActionViewController ()
13
14
15 @end
16
17 @implementation ActionViewController
18
19 - (instancetype)initWithNibName:(NSString *)nibNameOrNil
20 bundle:(NSBundle *)nibBundleOrNil {
21 self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
22 if (self) {
23 // Custom initialization
24 }
25 return self;
26 }
27
28 - (void)viewDidLoad {
29 [super viewDidLoad];
30 }
31
32 - (void)didReceiveMemoryWarning {
33 [super didReceiveMemoryWarning];
34 // Dispose of any resources that can be recreated.
35 }
36
37 - (IBAction)done {
38 // Return any edited content to the host app.
39 // This template doesn't do anything, so we just echo the passed in items.
40 [self.extensionContext
41 completeRequestReturningItems:self.extensionContext.inputItems
42 completionHandler:nil];
43 }
44
45 @end
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698