From ff9f0ab74c4746b077c61f1db7934ab4bb764702 Mon Sep 17 00:00:00 2001 From: Chris Bracken Date: Mon, 24 Feb 2020 10:04:08 -0800 Subject: [PATCH] Delete FlutterAppDelegate_Internal.h This was added in 672e587e7491d62daca4cfe6200d072bc8035fea as part of background execution support for iOS, but never used. --- ci/licenses_golden/licenses_flutter | 1 - shell/platform/darwin/ios/BUILD.gn | 1 - .../framework/Source/FlutterAppDelegate_Internal.h | 12 ------------ 3 files changed, 14 deletions(-) delete mode 100644 shell/platform/darwin/ios/framework/Source/FlutterAppDelegate_Internal.h diff --git a/ci/licenses_golden/licenses_flutter b/ci/licenses_golden/licenses_flutter index f8cba6e7c66a6..e8d25ab3f92e9 100644 --- a/ci/licenses_golden/licenses_flutter +++ b/ci/licenses_golden/licenses_flutter @@ -818,7 +818,6 @@ FILE: ../../../flutter/shell/platform/darwin/ios/framework/Headers/FlutterPlugin FILE: ../../../flutter/shell/platform/darwin/ios/framework/Headers/FlutterViewController.h FILE: ../../../flutter/shell/platform/darwin/ios/framework/Info.plist FILE: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterAppDelegate.mm -FILE: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterAppDelegate_Internal.h FILE: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterBinaryMessengerRelay.h FILE: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterBinaryMessengerRelay.mm FILE: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterBinaryMessengerRelayTest.mm diff --git a/shell/platform/darwin/ios/BUILD.gn b/shell/platform/darwin/ios/BUILD.gn index 9b1b39b386d5b..014b51c90ed30 100644 --- a/shell/platform/darwin/ios/BUILD.gn +++ b/shell/platform/darwin/ios/BUILD.gn @@ -46,7 +46,6 @@ shared_library("create_flutter_framework_dylib") { sources = [ "framework/Source/FlutterAppDelegate.mm", - "framework/Source/FlutterAppDelegate_Internal.h", "framework/Source/FlutterBinaryMessengerRelay.mm", "framework/Source/FlutterCallbackCache.mm", "framework/Source/FlutterCallbackCache_Internal.h", diff --git a/shell/platform/darwin/ios/framework/Source/FlutterAppDelegate_Internal.h b/shell/platform/darwin/ios/framework/Source/FlutterAppDelegate_Internal.h deleted file mode 100644 index 6d9389fc7599a..0000000000000 --- a/shell/platform/darwin/ios/framework/Source/FlutterAppDelegate_Internal.h +++ /dev/null @@ -1,12 +0,0 @@ -// Copyright 2013 The Flutter Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -#include "flutter/shell/platform/darwin/ios/framework/Headers/FlutterAppDelegate.h" - -@interface FlutterAppDelegate () - -@property(readonly, nonatomic) NSMutableArray* pluginDelegates; -@property(readonly, nonatomic) NSMutableDictionary* pluginPublications; - -@end