1// Copyright 2019 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 5#import "app/SceneDelegate.h" 6 7@implementation SceneDelegate 8 9- (void)scene:(UIScene*)scene 10 willConnectToSession:(UISceneSession*)session 11 options:(UISceneConnectionOptions*)connectionOptions { 12} 13 14- (void)sceneDidDisconnect:(UIScene*)scene { 15} 16 17- (void)sceneDidBecomeActive:(UIScene*)scene { 18} 19 20- (void)sceneWillResignActive:(UIScene*)scene { 21} 22 23- (void)sceneWillEnterForeground:(UIScene*)scene { 24} 25 26- (void)sceneDidEnterBackground:(UIScene*)scene { 27} 28 29@end 30