AppDelegate.m 526 B

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