summaryrefslogtreecommitdiffstats
path: root/core/java/android/database
diff options
context:
space:
mode:
authorNick Pelly <npelly@google.com>2013-04-22 15:52:03 +1000
committerNick Pelly <npelly@google.com>2013-04-23 08:30:34 +1000
commitbb392ba5f72fac676d5a1454846d4713d2cd7ef5 (patch)
treef0b3c6cb634862af1cb17d027e5b26666da5d40e /core/java/android/database
parent8adf5d2b0d3c59e085837159173c3228061ce3e7 (diff)
downloadframeworks_base-bb392ba5f72fac676d5a1454846d4713d2cd7ef5.zip
frameworks_base-bb392ba5f72fac676d5a1454846d4713d2cd7ef5.tar.gz
frameworks_base-bb392ba5f72fac676d5a1454846d4713d2cd7ef5.tar.bz2
Add ContentValues & CursorWindow to framework.aidl
By adding these stubs, they will be automatically added to framework.aidl in sdk builds. This makes it easier for unbundled apps to pass these objects across AIDL calls. ContentValues & CursorWindow are already public Parcelables. It is an oversight that they were not already in framework.aidl. There are a lot of other public Parcelables that are missing from framework.aidl. This just fixes two commonly requested ones. Change-Id: If61e19b1206da1680413d9ea03de87a90b6d233e
Diffstat (limited to 'core/java/android/database')
-rw-r--r--core/java/android/database/CursorWindow.aidl19
1 files changed, 19 insertions, 0 deletions
diff --git a/core/java/android/database/CursorWindow.aidl b/core/java/android/database/CursorWindow.aidl
new file mode 100644
index 0000000..5809355
--- /dev/null
+++ b/core/java/android/database/CursorWindow.aidl
@@ -0,0 +1,19 @@
+/*
+ * Copyright (C) 2013 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.database;
+
+parcelable CursorWindow;