summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* split boot animation out of SurfaceFlingerMathias Agopian2009-05-2110-39/+127
| | | | | | Conflicts: data/etc/platform.xml
* Merge change 2227 into donutAndroid (Google) Code Review2009-05-211-0/+167
|\ | | | | | | | | * changes: Add header declaring the interface for TTS engines to implement.
| * Add header declaring the interface for TTS engines to implement.Jean-Michel Trivi2009-05-211-0/+167
| |
* | Renamed setGestureType in GestureLibraryYang Li2009-05-212-3/+9
| |
* | Modify how GestureLibrary stores its data. The XML format is now replaced by ↵Romain Guy2009-05-2110-278/+288
|/ | | | a more efficient binary format which should speed up saving/loading. The format is very similar to the one used by the letters recognizer. The format is documented in GestureLibrary.java.
* Merge change 2219 into donutAndroid (Google) Code Review2009-05-217-47/+109
|\ | | | | | | | | * changes: Updated LetterRecognizer & related gesture recognition code - added personalization for letter recognizer
| * Updated LetterRecognizer & related gesture recognition codeYang Li2009-05-217-47/+109
| | | | | | | | - added personalization for letter recognizer
* | Merge change 2218 into donutAndroid (Google) Code Review2009-05-211-1/+2
|\ \ | | | | | | | | | | | | * changes: Fixed SD card access permission issue in manifest
| * | Fixed SD card access permission issue in manifestGuang Zhu2009-05-211-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | On branch b1869634_sdcard_perm Changes to be committed: (use "git reset HEAD <file>..." to unstage) modified: tests/DumpRenderTree/AndroidManifest.xml
* | | Merge change 2202 into donutAndroid (Google) Code Review2009-05-211-0/+5
|\ \ \ | | | | | | | | | | | | | | | | * changes: Fixes external http://code.google.com/p/android/issues/detail?id=2732. ExpandableListView is wrongly assuming that the saved state if of the correct type. A similar bug fix was made in TextView.onRestoreInstanceState() a while ago. This fix simply ensures that the state received is of the right type.
| * | | Fixes external http://code.google.com/p/android/issues/detail?id=2732. ↵Romain Guy2009-05-211-0/+5
| | | | | | | | | | | | | | | | ExpandableListView is wrongly assuming that the saved state if of the correct type. A similar bug fix was made in TextView.onRestoreInstanceState() a while ago. This fix simply ensures that the state received is of the right type.
* | | | am 4d8adefd: AI 149136: Restore RECORD_AUDIO permission check to ↵Dave Sparks2009-05-210-0/+0
|\ \ \ \ | |_|/ / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | MediaRecorder. When we moved the media recorder to the media server process, we lost the permission check that was done at the process boundary in the AudioRecord binder interface because the AudioRecord object is created in the same process. This change adds a permission check in the MediaRecorderClient:setAudioSource() method. BUG=1868334 Merge commit '4d8adefd35efdea849611b8b02d61f9517e47760' into donut * commit '4d8adefd35efdea849611b8b02d61f9517e47760': AI 149136: Restore RECORD_AUDIO permission check to MediaRecorder.
| * | | AI 149136: Restore RECORD_AUDIO permission check to MediaRecorder.Dave Sparks2009-05-211-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When we moved the media recorder to the media server process, we lost the permission check that was done at the process boundary in the AudioRecord binder interface because the AudioRecord object is created in the same process. This change adds a permission check in the MediaRecorderClient:setAudioSource() method. BUG=1868334 Automated import of CL 149136
* | | | Merge change 2170 into donutAndroid (Google) Code Review2009-05-211-0/+68
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | * changes: Trigger the LocationManager whenever the SearchDialog is shown (and stop when the SearchDialog is stopped). This way we get a network-based location quickly so that by the time any location- based suggestion provider wants to do suggestions, it's likely to have a good fresh location.
| * | | | Trigger the LocationManager whenever the SearchDialog is shownMike LeBeau2009-05-201-0/+68
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (and stop when the SearchDialog is stopped). This way we get a network-based location quickly so that by the time any location- based suggestion provider wants to do suggestions, it's likely to have a good fresh location.
* | | | | Merge commit '7b7225c8fdbead25235c74811b30ff4ee690dc58' into manual_mergeDave Sparks2009-05-211-1/+1
|\ \ \ \ \ | | |/ / / | |/| / / | |_|/ / |/| | | Conflicts: camera/libcameraservice/CameraService.cpp
| * | | AI 149133: Enable the camera permission check.Dave Sparks2009-05-212-4/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Some debugging code was added to camera service. Later it was #ifdef'd out, but this change also removed the camera permission check. This change puts the permission check back in. BUG=1869264 Automated import of CL 149133
* | | | Merge change 2182 into donutAndroid (Google) Code Review2009-05-2114-114/+32
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | * changes: location: Replace ILocationCollector interface with new ILocationProvider method
| * | | | location: Replace ILocationCollector interface with new ILocationProvider methodMike Lockwood2009-05-2114-114/+32
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This change replaces ILocationCollector with a more general mechanism that passes locations received from a provider to all other providers. The network location provider now uses this to implement the location collector. In the future, this could be used to inject network locations to the GPS as aiding data. This change also removes the now obsolete permission INSTALL_LOCATION_COLLECTOR. Signed-off-by: Mike Lockwood <lockwood@android.com>
* | | | | Merge change 2168 into donutAndroid (Google) Code Review2009-05-212-6/+3
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | * changes: Fix permission hole in camera service. Some debugging code was added to CameraService::onTransact() method during development. Later on the entire onTransact() method was #ifdef'd out, which inadvertently omitted the permissions check code. This change restores the code.
| * | | | | Fix permission hole in camera service. Some debugging code was addedDave Sparks2009-05-202-6/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | to CameraService::onTransact() method during development. Later on the entire onTransact() method was #ifdef'd out, which inadvertently omitted the permissions check code. This change restores the code.
* | | | | | Merge change 1863 into donutAndroid (Google) Code Review2009-05-211-4/+22
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | * changes: Center the progress message for GoogleWebContentHelper (bug #1548858).
| * | | | | | Center the progress message for GoogleWebContentHelper (bug #1548858).Mihai Preda2009-05-191-4/+22
| | | | | | |
* | | | | | | Merge change 2147 into donutAndroid (Google) Code Review2009-05-2016-5/+94
|\ \ \ \ \ \ \ | | |_|_|_|/ / | |/| | | | | | | | | | | | | | | | | | | * changes: Add support to SuggestionsAdapter to query the 'working' status of its underlying cursor and update a spinner in the search dialog accordingly.
| * | | | | | Add support to SuggestionsAdapter to query the 'working' statusMike LeBeau2009-05-2016-5/+94
| | |_|_|_|/ | |/| | | | | | | | | | | | | | | | | | | | | | of its underlying cursor and update a spinner in the search dialog accordingly.
* | | | | | Merge change 2163 into donutAndroid (Google) Code Review2009-05-201-0/+4
|\ \ \ \ \ \ | | |_|/ / / | |/| | / / | |_|_|/ / |/| | | | * changes: Fix permission hole for RECORD_AUDIO created when we moved the MediaRecorder implementation to the mediaserver process. The permission check was previously enforced only at the AudioRecord binder interface for clients not in the same process. This change adds an additional check when the client tries to set the audio source. Bug 1868334
| * | | | Fix permission hole for RECORD_AUDIO created when we moved the MediaRecorderDave Sparks2009-05-201-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | implementation to the mediaserver process. The permission check was previously enforced only at the AudioRecord binder interface for clients not in the same process. This change adds an additional check when the client tries to set the audio source. Bug 1868334
* | | | | Merge change 2152 into donutAndroid (Google) Code Review2009-05-201-0/+5
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | * changes: make sure to fail to software when the h/w renderer cannot be initialized
| * | | | | make sure to fail to software when the h/w renderer cannot be initializedMathias Agopian2009-05-201-0/+5
| | |/ / / | |/| | |
* | | | | Merge change 2138 into donutAndroid (Google) Code Review2009-05-203-24/+3017
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | * changes: Add padding to public.xml to avoid breaking from auto-merges.
| * | | | | Add padding to public.xml to avoid breaking from auto-merges.Dianne Hackborn2009-05-203-24/+3017
| |/ / / /
* | | | | Tweak the Gestures Overlay demo. This shortens the fade duration to make it ↵Romain Guy2009-05-203-13/+24
|/ / / / | | | | | | | | | | | | more usable and also adds a longer pause before the fade. This change also introduce a new compile-time setting to decide whether or not the overlay should steal the events from the underlying ListView. It is now off by default, per discussion with hackbod. It feel a little bit better but it may vary from user to user so studies will be necessary.
* | | | Merge change 2136 into donutAndroid (Google) Code Review2009-05-2018-356/+539
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | * changes: First pass at cleaning up the gestures code.
| * | | | First pass at cleaning up the gestures code.Romain Guy2009-05-2018-356/+539
| | | | |
* | | | | Merge change 1932 into donutAndroid (Google) Code Review2009-05-201-1/+5
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | * changes: Qualify a type and add some explanatory comments.
| * | | | | Qualify a type and add some explanatory comments.Dan Egnor2009-05-181-1/+5
| | | | | |
* | | | | | Merge change 2109 into donutAndroid (Google) Code Review2009-05-201-0/+5
|\ \ \ \ \ \ | |_|/ / / / |/| | | | | | | | | | | | | | | | | * changes: Add option for gtalk stream compression
| * | | | | Add option for gtalk stream compressionCostin Manolache2009-05-201-0/+5
| | | | | |
* | | | | | Fix NPE at boot.Romain Guy2009-05-201-28/+30
| | | | | |
* | | | | | Merge change 2115 into donutAndroid (Google) Code Review2009-05-203-45/+25
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | * changes: bring the native_handle stuff back from master_gl
| * | | | | | bring the native_handle stuff back from master_glMathias Agopian2009-05-203-45/+25
| | | | | | |
* | | | | | | this might fix the buildJoe Onorato2009-05-201-1/+1
|/ / / / / /
* | | | | | Merge change 2111 into donutAndroid (Google) Code Review2009-05-201-3/+29
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | * changes: GPS: Add support for forcing NTP time and XTRA data injection.
| * | | | | | GPS: Add support for forcing NTP time and XTRA data injection.Mike Lockwood2009-05-201-3/+29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Mike Lockwood <lockwood@android.com>
* | | | | | | Fix issue #1859814: Add android.os.Build.MANUFACTURERDianne Hackborn2009-05-202-0/+13
| | | | | | |
* | | | | | | Merge change 2094 into donutAndroid (Google) Code Review2009-05-201-0/+54
|\ \ \ \ \ \ \ | |_|/ / / / / |/| | | | | | | | | | | | | | | | | | | | * changes: Fixes #1866819.\nTextView sets the bounds of its compound drawables to contain only the width and the height of the drawables. This causes View.invalidateDrawable() to invalidate the compound drawables at location (0, 0) within the view, thus invalidating the wrong part of the View. This prevents animation from running correctly when using animated drawable. This change overrides invalidateDrawable() in TextView to take into account the real position of the compound drawable.
| * | | | | | Fixes #1866819.\nTextView sets the bounds of its compound drawables to ↵Romain Guy2009-05-201-0/+54
| | | | | | | | | | | | | | | | | | | | | | | | | | | | contain only the width and the height of the drawables. This causes View.invalidateDrawable() to invalidate the compound drawables at location (0, 0) within the view, thus invalidating the wrong part of the View. This prevents animation from running correctly when using animated drawable. This change overrides invalidateDrawable() in TextView to take into account the real position of the compound drawable.
* | | | | | | Merge change 2092 into donutAndroid (Google) Code Review2009-05-202-2/+2
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * changes: Make sure smsHeader != null before using it.
| * | | | | | | Make sure smsHeader != null before using it.jsh2009-05-202-2/+2
| | |_|_|/ / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | Fixes bug 1866578 - NPE while trying to dispatch a non-concatenated SMS with no user data header (ie, your typical SMS).
* | | | | | | Merge change 2099 into donutAndroid (Google) Code Review2009-05-2014-93/+605
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * changes: Hook up the backup data writer, and add a utility to read the backup data files.