2016-03-08 10:51:54 -08:00
|
|
|
/*
|
|
|
|
|
* Copyright 2016 The WebRTC Project Authors. All rights reserved.
|
|
|
|
|
*
|
|
|
|
|
* Use of this source code is governed by a BSD-style license
|
|
|
|
|
* that can be found in the LICENSE file in the root of the source
|
|
|
|
|
* tree. An additional intellectual property rights grant can be found
|
|
|
|
|
* in the file PATENTS. All contributing project authors may
|
|
|
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#if defined(WEBRTC_IOS)
|
|
|
|
|
|
2017-06-12 14:16:20 +02:00
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
|
|
|
|
|
|
@interface RTCUIApplicationStatusObserver : NSObject
|
|
|
|
|
|
|
|
|
|
+ (instancetype)sharedInstance;
|
2017-09-13 07:31:46 -07:00
|
|
|
+ (void)prepareForUse;
|
2017-06-12 14:16:20 +02:00
|
|
|
|
|
|
|
|
- (BOOL)isApplicationActive;
|
2016-03-08 10:51:54 -08:00
|
|
|
|
2017-06-12 14:16:20 +02:00
|
|
|
@end
|
2016-03-08 10:51:54 -08:00
|
|
|
|
2017-06-12 14:16:20 +02:00
|
|
|
#endif // WEBRTC_IOS
|