Remove Parcel::writeIntPtr.

All uses of this API have been removed. It should
never have been made public in the first place.

bug: 15424960

(cherry picked from commit 7da40c0a84)

Change-Id: I8d89f62dbdaee7149ef908e0c97417b85e0c48a2
This commit is contained in:
Narayan Kamath 2014-06-12 15:24:06 +01:00
parent 3dd3de03de
commit f905bc3bdc
2 changed files with 0 additions and 6 deletions

View File

@ -97,7 +97,6 @@ public:
status_t writeInt64(int64_t val);
status_t writeFloat(float val);
status_t writeDouble(double val);
status_t writeIntPtr(intptr_t val);
status_t writeCString(const char* str);
status_t writeString8(const String8& str);
status_t writeString16(const String16& str);

View File

@ -679,11 +679,6 @@ status_t Parcel::writeDouble(double val)
#endif
status_t Parcel::writeIntPtr(intptr_t val)
{
return writeAligned(val);
}
status_t Parcel::writeCString(const char* str)
{
return write(str, strlen(str)+1);