From 90233a1ee50980310613b50f22fc68dd7b40ded8 Mon Sep 17 00:00:00 2001 From: Joe Onorato Date: Mon, 12 Apr 2010 08:16:18 -0700 Subject: Add IStatusBar Change-Id: Ie73d665085d5ce7358c285bf332ef1dc96005d0f --- core/java/android/app/IPoo.aidl | 23 ----------------------- core/java/android/app/IStatusBar.aidl | 23 +++++++++++++++++++++++ core/java/android/app/IStatusBarService.aidl | 4 ++-- 3 files changed, 25 insertions(+), 25 deletions(-) delete mode 100644 core/java/android/app/IPoo.aidl create mode 100644 core/java/android/app/IStatusBar.aidl (limited to 'core') diff --git a/core/java/android/app/IPoo.aidl b/core/java/android/app/IPoo.aidl deleted file mode 100644 index 5d5d6f3..0000000 --- a/core/java/android/app/IPoo.aidl +++ /dev/null @@ -1,23 +0,0 @@ -/** - * Copyright (c) 2007, The Android Open Source Project - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package android.app; - -/** @hide */ -interface IPoo -{ -} - diff --git a/core/java/android/app/IStatusBar.aidl b/core/java/android/app/IStatusBar.aidl new file mode 100644 index 0000000..8d571ef --- /dev/null +++ b/core/java/android/app/IStatusBar.aidl @@ -0,0 +1,23 @@ +/** + * Copyright (c) 2007, The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package android.app; + +/** @hide */ +interface IStatusBar +{ +} + diff --git a/core/java/android/app/IStatusBarService.aidl b/core/java/android/app/IStatusBarService.aidl index 002f2a8..ccde41a 100644 --- a/core/java/android/app/IStatusBarService.aidl +++ b/core/java/android/app/IStatusBarService.aidl @@ -16,7 +16,7 @@ package android.app; -import android.app.IPoo; +import android.app.IStatusBar; /** @hide */ interface IStatusBarService @@ -30,5 +30,5 @@ interface IStatusBarService void removeIcon(IBinder key); // ---- Methods below are for use by the status bar policy services ---- - void registerStatusBar(IPoo callbacks); + void registerStatusBar(IStatusBar callbacks); } -- cgit v1.1