IActivityManager.h revision fa851800cf97d1a3d30a7a147877005dc48721ff
1/*
2 * Copyright (C) 2016 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *      http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef ANDROID_IACTIVITY_MANAGER_H
18#define ANDROID_IACTIVITY_MANAGER_H
19
20#include <binder/IInterface.h>
21#include <binder/IUidObserver.h>
22
23namespace android {
24
25// ------------------------------------------------------------------------------------
26
27class IActivityManager : public IInterface
28{
29public:
30    DECLARE_META_INTERFACE(ActivityManager)
31
32    virtual int openContentUri(const String16& stringUri) = 0;
33    virtual void registerUidObserver(const sp<IUidObserver>& observer,
34                                     const int32_t event,
35                                     const int32_t cutpoint,
36                                     const String16& callingPackage) = 0;
37    virtual void unregisterUidObserver(const sp<IUidObserver>& observer) = 0;
38    virtual bool isUidActive(const uid_t uid, const String16& callingPackage) = 0;
39
40    enum {
41        OPEN_CONTENT_URI_TRANSACTION = IBinder::FIRST_CALL_TRANSACTION,
42        REGISTER_UID_OBSERVER_TRANSACTION,
43        UNREGISTER_UID_OBSERVER_TRANSACTION,
44        IS_UID_ACTIVE_TRANSACTION
45    };
46};
47
48// ------------------------------------------------------------------------------------
49
50}; // namespace android
51
52#endif // ANDROID_IACTIVITY_MANAGER_H
53