blob: 31917e81b00c841584a6ce5a3faf9b7683972362 [file] [log] [blame]
Chris Bracken2d437f52017-05-11 14:29:20 -07001// Copyright 2017 The Chromium Authors. 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
Jenn Magder649cf822019-10-15 12:36:50 -07005#import "AppDelegate.h"
6#import "GeneratedPluginRegistrant.h"
Chris Bracken2d437f52017-05-11 14:29:20 -07007
Mikkel Nygaard Ravna755ccd2017-05-29 14:07:21 +02008@implementation AppDelegate
Chris Bracken2d437f52017-05-11 14:29:20 -07009
10- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
Mikkel Nygaard Ravna755ccd2017-05-29 14:07:21 +020011 [GeneratedPluginRegistrant registerWithRegistry:self];
12 return [super application:application didFinishLaunchingWithOptions:launchOptions];
Chris Bracken2d437f52017-05-11 14:29:20 -070013}
14
15@end