summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoe Onorato <joeo@google.com>2011-10-23 15:15:07 -0700
committerJoe Onorato <joeo@google.com>2011-10-23 19:11:40 -0700
commit6937988227359c154b65c2e476918ac47f7fb392 (patch)
tree49d9e849799ca2d916a4e602fb90ae12fd77aab6
parent50f3603b28ec255e017510f4689f8681541220f9 (diff)
downloadframeworks_base-6937988227359c154b65c2e476918ac47f7fb392.zip
frameworks_base-6937988227359c154b65c2e476918ac47f7fb392.tar.gz
frameworks_base-6937988227359c154b65c2e476918ac47f7fb392.tar.bz2
Parcelables are flattenable for now.
Change-Id: I439bba75a5a4dbb9350ffbfccb12b4fb97568712
-rw-r--r--tools/aidl/aidl_language_y.y2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/aidl/aidl_language_y.y b/tools/aidl/aidl_language_y.y
index cc04d15..3c16e15 100644
--- a/tools/aidl/aidl_language_y.y
+++ b/tools/aidl/aidl_language_y.y
@@ -87,7 +87,7 @@ parcelable_decl:
b->name = $2.buffer;
b->package = g_currentPackage ? strdup(g_currentPackage) : NULL;
b->semicolon_token = $3.buffer;
- b->flattening_methods = PARCELABLE_DATA;
+ b->flattening_methods = PARCELABLE_DATA | RPC_DATA;
$$.user_data = b;
}
| PARCELABLE ';' {