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

Side by Side Diff: test/ios/extension/ExtensionContainer/AppDelegate.m

Issue 376603002: This CL adds support for extension in GYP. (Closed) Base URL: https://chromium.googlesource.com/external/gyp.git@master
Patch Set: comment corrections 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 // Copyright (c) 2014 Google Inc. 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 #import "AppDelegate.h"
6
7 @interface AppDelegate ()
8
pkl (ping after 24h if needed) 2014/07/09 08:07:50 Just 1 blank line. And fix the style (e.g. "Type*"
olivierrobin 2014/07/09 12:46:27 Done.
olivierrobin 2014/07/09 12:46:27 Done.
9
10 @end
11
12 @implementation AppDelegate
13
14
15 - (BOOL)application:(UIApplication *)application
16 didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
17 // Override point for customization after application launch.
18 return YES;
19 }
20
21 - (void)applicationWillResignActive:(UIApplication *)application {
22 }
23
24 - (void)applicationDidEnterBackground:(UIApplication *)application {
25 }
26
27 - (void)applicationWillEnterForeground:(UIApplication *)application {
28 }
29
30 - (void)applicationDidBecomeActive:(UIApplication *)application {
31 }
32
33 - (void)applicationWillTerminate:(UIApplication *)application {
34 }
35
36 @end
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698