blob: a2064df5db9495e786259cea79c5d87649241237 [file] [log] [blame]
tkchin5ed5ed92016-03-08 10:51:54 -08001/*
2 * Copyright 2016 The WebRTC Project Authors. All rights reserved.
3 *
4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
tkchin5ed5ed92016-03-08 10:51:54 -080011#if defined(WEBRTC_IOS)
12
Anders Carlssonfc309752017-06-12 14:16:20 +020013#import <Foundation/Foundation.h>
tkchin5ed5ed92016-03-08 10:51:54 -080014
Anders Carlssonfc309752017-06-12 14:16:20 +020015@interface RTCUIApplicationStatusObserver : NSObject
tkchin5ed5ed92016-03-08 10:51:54 -080016
Anders Carlssonfc309752017-06-12 14:16:20 +020017+ (instancetype)sharedInstance;
andersc9a85f072017-09-13 07:31:46 -070018+ (void)prepareForUse;
Anders Carlssonfc309752017-06-12 14:16:20 +020019
20- (BOOL)isApplicationActive;
21
22@end
23
24#endif // WEBRTC_IOS