blob: 15221b1f0fa7c678bdcc8d588cd7c022d4b05199 [file] [log] [blame]
Dianne Hackbornc2293022013-02-06 23:14:49 -08001/*
2 * Copyright (C) 2013 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
17package com.android.internal.app;
18
Dianne Hackbornd7d28e62013-02-12 14:59:53 -080019// This interface is also used by native code, so must
Peter Visontaycee76322017-09-05 11:43:36 +010020// be kept in sync with frameworks/native/libs/binder/include/binder/IAppOpsCallback.h
Dianne Hackbornc2293022013-02-06 23:14:49 -080021oneway interface IAppOpsCallback {
Dianne Hackbornbef28fe2015-10-29 17:57:11 -070022 void opChanged(int op, int uid, String packageName);
Dianne Hackbornc2293022013-02-06 23:14:49 -080023}