AppDelegate.m 590 B

1234567891011121314151617
  1. // Copyright 2018 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. #include "AppDelegate.h"
  5. #include "GeneratedPluginRegistrant.h"
  6. @implementation AppDelegate
  7. - (BOOL)application:(UIApplication *)application
  8. didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
  9. [GeneratedPluginRegistrant registerWithRegistry:self];
  10. // Override point for customization after application launch.
  11. return [super application:application didFinishLaunchingWithOptions:launchOptions];
  12. }
  13. @end