summaryrefslogtreecommitdiffstats
path: root/tools/aidl
diff options
context:
space:
mode:
authorJoe Onorato <joeo@google.com>2011-10-18 18:17:32 -0700
committerMike Lockwood <lockwood@android.com>2011-10-28 10:14:52 -0400
commit8f3580e9da652f5bda3ee4746c8cd633f11243ca (patch)
treeb735360d4352421e9098e766f002f5281f7441dd /tools/aidl
parent47f2f8340f2a1390d3b346adf6b8ca8e93079cad (diff)
downloadframeworks_base-8f3580e9da652f5bda3ee4746c8cd633f11243ca.zip
frameworks_base-8f3580e9da652f5bda3ee4746c8cd633f11243ca.tar.gz
frameworks_base-8f3580e9da652f5bda3ee4746c8cd633f11243ca.tar.bz2
Revert "Treat parcelables as flattenables for now, until the sdk contains a newer aidl."
Change-Id: I8f588d160888550ee79564afe6935fd0f78bc1f7
Diffstat (limited to 'tools/aidl')
-rw-r--r--tools/aidl/aidl_language_y.y4
1 files changed, 1 insertions, 3 deletions
diff --git a/tools/aidl/aidl_language_y.y b/tools/aidl/aidl_language_y.y
index 4b1442a..cc04d15 100644
--- a/tools/aidl/aidl_language_y.y
+++ b/tools/aidl/aidl_language_y.y
@@ -87,9 +87,7 @@ parcelable_decl:
b->name = $2.buffer;
b->package = g_currentPackage ? strdup(g_currentPackage) : NULL;
b->semicolon_token = $3.buffer;
- // TODO: Since we're having problems with funbundling, make all parcelables also flattenables.
- // b->flattening_methods = PARCELABLE_DATA;
- b->flattening_methods = PARCELABLE_DATA | RPC_DATA;
+ b->flattening_methods = PARCELABLE_DATA;
$$.user_data = b;
}
| PARCELABLE ';' {