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

Unified Diff: test/ios/extension/ExtensionContainer/AppDelegate.h

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 side-by-side diff with in-line comments
Download patch
Index: test/ios/extension/ExtensionContainer/AppDelegate.h
diff --git a/test/win/linker-flags/safeseh_hello.cc b/test/ios/extension/ExtensionContainer/AppDelegate.h
similarity index 53%
copy from test/win/linker-flags/safeseh_hello.cc
copy to test/ios/extension/ExtensionContainer/AppDelegate.h
index 6141300d2c0a517a8f79075619d089be0ddbf2ea..a5b74b73b2cca3c42b2916418a8aa4fd3d81e314 100644
--- a/test/win/linker-flags/safeseh_hello.cc
+++ b/test/ios/extension/ExtensionContainer/AppDelegate.h
@@ -2,10 +2,12 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-extern "C" {
-int zero(void);
-}
+#import <UIKit/UIKit.h>
+
+@interface AppDelegate : UIResponder <UIApplicationDelegate>
+
+@property (strong, nonatomic) UIWindow *window;
+
+
pkl (ping after 24h if needed) 2014/07/09 08:07:50 just 1 blank line.
olivierrobin 2014/07/09 12:46:27 Done.
+@end
-int main() {
- return zero();
-}

Powered by Google App Engine
This is Rietveld 408576698