diff options
Diffstat (limited to 'include/binder/AppOpsManager.h')
-rw-r--r-- | include/binder/AppOpsManager.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/binder/AppOpsManager.h b/include/binder/AppOpsManager.h index f64d5da..256cb94 100644 --- a/include/binder/AppOpsManager.h +++ b/include/binder/AppOpsManager.h @@ -28,9 +28,9 @@ class AppOpsManager { public: enum { - MODE_ALLOWED = 0, - MODE_IGNORED = 1, - MODE_ERRORED = 2 + MODE_ALLOWED = IAppOpsService::MODE_ALLOWED, + MODE_IGNORED = IAppOpsService::MODE_IGNORED, + MODE_ERRORED = IAppOpsService::MODE_ERRORED }; enum { |