Chromium Code Reviews| 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(); |
| -} |