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 #pragma once 18 19 #ifndef __ANDROID_VNDK__ 20 21 #include <binder/IUidObserver.h> 22 #include <binder/IInterface.h> 23 24 namespace android { 25 26 // ------------------------------------------------------------------------------------ 27 28 class IActivityManager : public IInterface 29 { 30 public: 31 DECLARE_META_INTERFACE(ActivityManager) 32 33 virtual int openContentUri(const String16& stringUri) = 0; 34 virtual status_t registerUidObserver(const sp<IUidObserver>& observer, 35 const int32_t event, 36 const int32_t cutpoint, 37 const String16& callingPackage) = 0; 38 virtual status_t unregisterUidObserver(const sp<IUidObserver>& observer) = 0; 39 virtual bool isUidActive(const uid_t uid, const String16& callingPackage) = 0; 40 virtual int32_t getUidProcessState(const uid_t uid, const String16& callingPackage) = 0; 41 virtual status_t checkPermission(const String16& permission, 42 const pid_t pid, 43 const uid_t uid, 44 int32_t* outResult) = 0; 45 46 enum { 47 OPEN_CONTENT_URI_TRANSACTION = IBinder::FIRST_CALL_TRANSACTION, 48 REGISTER_UID_OBSERVER_TRANSACTION, 49 UNREGISTER_UID_OBSERVER_TRANSACTION, 50 IS_UID_ACTIVE_TRANSACTION, 51 GET_UID_PROCESS_STATE_TRANSACTION, 52 CHECK_PERMISSION_TRANSACTION, 53 }; 54 }; 55 56 // ------------------------------------------------------------------------------------ 57 58 } // namespace android 59 60 #else // __ANDROID_VNDK__ 61 #error "This header is not visible to vendors" 62 #endif // __ANDROID_VNDK__ 63