Merge commit '195cb33f3f3f5adf62be0999d746444aa6c945f2'
* commit '195cb33f3f3f5adf62be0999d746444aa6c945f2':
LocationManagerService: Remove caching of last known locations to flash.
LocationManagerService: Add null pointer check and remove useless finalize() method.
Merge commit '84c4548d046c7426cd346602cec18b98fdcdbf3c' into eclair-plus-aosp
* commit '84c4548d046c7426cd346602cec18b98fdcdbf3c':
LocationManagerService: Remove caching of last known locations to flash.
LocationManagerService: Add null pointer check and remove useless finalize() method.
Merge commit 'c98d68cd56338ec57695b3c35114fbde88d4bde8' into eclair-plus-aosp
* commit 'c98d68cd56338ec57695b3c35114fbde88d4bde8':
Move SMS pdu creation fully into the central Phone process.
* changes:
LocationManagerService: Remove caching of last known locations to flash.
LocationManagerService: Add null pointer check and remove useless finalize() method.
Previously pdu creation was haphazardly done sometimes by the app and
sometimes centrally by the phone process -- specifically the phone
process did creation for multipart texts. This change gets rid of the
previous IPC interface for sending raw pdus to SMSDispatch in the
phone process, and instead makes everything work like multipart
messages worked before, namely the structured data is passed and pdu
encoding done centrally.
The motivation for this was the need to ensure that CDMA message id
numbers were strictly monotonic, including across reboots, which
necessitated central state in the form of a system property, which
could in turn only be modified by the phone process.
Hence, this (in part) addresses issue: http://buganizer/issue?id=2075760
Change-Id: I94ca207b6e657c465e8472534704db8646ee277c
Merge commit 'dcd21531a7107421ecf7f88828040bc3a39cfbf3'
* commit 'dcd21531a7107421ecf7f88828040bc3a39cfbf3':
allow a longer timeout for layout tests, see if it stabilizes pass/fail numbers
Merge commit 'ce54003aa8961764763c4045991b730974fa9083' into eclair-plus-aosp
* commit 'ce54003aa8961764763c4045991b730974fa9083':
allow a longer timeout for layout tests, see if it stabilizes pass/fail numbers
Merge commit 'd1e7bd0a64980b1812a0bbfeb16fc3802664ab27'
* commit 'd1e7bd0a64980b1812a0bbfeb16fc3802664ab27':
Allow fragmentText to be called for singleton CDMA messages.
Merge commit '95434bfaee62161ce02012c6424f0c0c8fffccb5' into eclair-plus-aosp
* commit '95434bfaee62161ce02012c6424f0c0c8fffccb5':
Allow fragmentText to be called for singleton CDMA messages.
Merge commit '765f49e22d7dbf608710baa95e9769b9133d9483'
* commit '765f49e22d7dbf608710baa95e9769b9133d9483':
re-enable cancelation of the sync thread upon receipt of ISyncAdapter.cancelSync()
Merge commit '34b6a27ea38adeea54a488efc6bbd04c58cb8a91' into eclair-plus-aosp
* commit '34b6a27ea38adeea54a488efc6bbd04c58cb8a91':
re-enable cancelation of the sync thread upon receipt of ISyncAdapter.cancelSync()
Merge commit 'e23ef1023a4e4bd91a68c41c81ba273656a2c3a7' into eclair-plus-aosp
* commit 'e23ef1023a4e4bd91a68c41c81ba273656a2c3a7':
Add error output to pm for FAILED_MISSING_FEATURE
Merge commit '85655ebcd9dc521e3c11209d24afee432d18b596'
* commit '85655ebcd9dc521e3c11209d24afee432d18b596':
Prevent ListView from scrolling/flinging its content when the content fits on screen.
Merge commit '0f44220b34e346ef333cdb4cd4b4903b5212dad2' into eclair-plus-aosp
* commit '0f44220b34e346ef333cdb4cd4b4903b5212dad2':
Prevent ListView from scrolling/flinging its content when the content fits on screen.
Previously we had been setting the imageSize parameter to 0, which was
incorrect. According to the OpenGL ES spec for glCompressedTexImage2D
this parameter should be the size in bytes of the compressed data.