44117 Commits

Author SHA1 Message Date
Justin Ho
1cf210e919 am 57aa5cbd: am 0a909a12: Merge "Updated notification and effects for Honeycomb Bug: 3389139" into honeycomb
* commit '57aa5cbda2028073eb38cab5a35caf358d2b4fb4':
  Updated notification and effects for Honeycomb Bug: 3389139
2011-02-01 13:25:26 -08:00
Joe Onorato
bf86edaad9 am ba426a7e: am 8f4fe8fe: Merge "When the data flows, the icon glows." into honeycomb
* commit 'ba426a7e86fa958c1536c58a71ca9bb2c6e79479':
  When the data flows, the icon glows.
2011-02-01 13:25:12 -08:00
Dheeraj Sharma
b5f497b404 am 537cc3b1: am ba2ee617: Merge "Fix for issue 3409874:Crash during addition of pan and zoom effect if start and end rect are unchanged" into honeycomb
* commit '537cc3b19d84e5b0c8d3631c051bb36a4c8cf784':
  Fix for issue 3409874:Crash during addition of pan and zoom effect if start and end rect are unchanged
2011-02-01 13:25:05 -08:00
Romain Guy
8e3a02f2e1 am 65710b4e: am bc71d625: Merge "Don\'t convert 4444 images to 565. Bug #3327175" into honeycomb
* commit '65710b4eac717a32853d7b49da848f27b4b301e9':
  Don't convert 4444 images to 565. Bug #3327175
2011-02-01 13:24:58 -08:00
Justin Ho
9b000ad577 am c0957f3c: am 186d8d36: Merge "Fix bug 3410400 - Holo rating bar assets" into honeycomb
* commit 'c0957f3ce18b2ea4f4d95dbd8a0fa113a1695ee9':
  Fix bug 3410400 - Holo rating bar assets
2011-02-01 13:24:47 -08:00
Jason parks
4dc5c4a19a am 31d3963b: am f370391f: Merge "Show the encryption boot animation." into honeycomb
* commit '31d3963bd6f8f14268adf26b2b7b6cac9cd949f0':
  Show the encryption boot animation.
2011-02-01 13:24:35 -08:00
Chet Haase
74c86d3e3a am 0a198c80: am 2cd52c80: Merge "Fix invalidation issue with actionbar items" into honeycomb
* commit '0a198c80765a0fbf52bdc84fddd11bc86c83ed51':
  Fix invalidation issue with actionbar items
2011-02-01 13:24:02 -08:00
Dharmaray Kundargi
4fd9eaf5a9 am 8ceccbed: am 327549f9: Merge "Fix issue 3408285. Fix issue in Thread safe in Java." into honeycomb
* commit '8ceccbed7177234f219f2aa39f71554f9141d084':
  Fix issue 3408285. Fix issue in Thread safe in Java.
2011-02-01 13:23:43 -08:00
Kristian Monsen
2d65a5fdac Proper fix for bug 3407633
Using WebAddress to parse the url, this way we will match the
java stack.

Change-Id: I30979df5ef347d9770985ebbb8139ec119764460
2011-02-01 21:15:52 +00:00
Jean-Baptiste Queru
066e1e3cc6 am dbf09fee: am eb17d6f5: Merge "Don\'t crash zygote if webcore fails to load"
* commit 'dbf09feee0ba7210dadebbbb4cf7e7248f4ea634':
  Don't crash zygote if webcore fails to load
2011-02-01 13:12:04 -08:00
Romain Guy
54229ee5eb Correctly set the alpha of a hardware layer before drawing it.
Bug #3410819

Change-Id: I3ebaca2233f4edf5b59d84ec7706555056a1a4b1
2011-02-01 13:05:16 -08:00
Jean-Baptiste Queru
dbf09feee0 am eb17d6f5: Merge "Don\'t crash zygote if webcore fails to load"
* commit 'eb17d6f51a9776f02be84859b8980a6317abd27c':
  Don't crash zygote if webcore fails to load
2011-02-01 13:02:19 -08:00
Jean-Baptiste Queru
eb17d6f51a Merge "Don't crash zygote if webcore fails to load" 2011-02-01 12:41:55 -08:00
Nick Pelly
1e19d87c78 am 17bf5e3c: DO NOT MERGE
* commit '17bf5e3ccfe961e6cc967327ab092cfbd6568ddd':
  DO NOT MERGE
2011-02-01 11:50:28 -08:00
Romain Guy
feeea8f07c Assume ARGB_8888 for unknown configs.
Bug #3327175

Change-Id: If712a255ec65014cd2e007de1e4c6a1d67c19250
2011-02-01 11:22:46 -08:00
Nick Pelly
17bf5e3ccf DO NOT MERGE
Cherry-pick from GB to HC, updating 11.xml.

Final final final Gingerbread MR API changes.

This is it. I promise.

ACTION_TECHNOLOGY_DISCOVERED -> ACTION_TECH_DISCOVERED
    This was missed in our technology->tech rename.

Hide TagTechnology.reconnect()
    This is used to reset any per-connection state in a tag, by reconnecting
    to it. The first problem is that it belongs on Tag, not TagTechnology. The
    second problem is that it may become redundant once we add Tag.rediscover()
    which will also reconnect to the tag, and will also return a new Tag with
    newly created technologies enumerated. And the third and most significant
    problem is that you can already achieve the same result by just calling
    close() followed by connect().

Hide Tag.createMockTag()
    This API cannot be used reliably. First it requires using int[] for the
    technology list, but those int constants are now hidden. Second it requires
    knowledge of the extras parcel used to fill technology specific data - also
    not public.

Introduce TagTechnology.isConnected()
    Every child class already impelmented this, and given that connect() and
    close() are defined on the interface, then isConnected() should be there
    too.

Modify Ndef.getType to return a string (not int)
    Allows more flexibility in adding new NDEF types. Current public strings are
    org.nfcforum.ndef.type1
    org.nfcforum.ndef.type2
    org.nfcforum.ndef.type3
    org.nfcforum.ndef.type4
    com.nxp.ndef.mifareclassic

Add NdefFormatable.formatReadOnly()
    This allows you to make the tag read-only at the same time as performing
    format and write. It is important because we currently don't have any
    public API to re-enumerate a tag technology list after making a tag
    NDEF compatible, so you can't perform the format as a seperate step
    without physically removing the tag from field and returning it.

Modify Readonly -> ReadOnly

Make Tag class final

Change-Id: Ifa8a17741fcc95776ffdba42f611eadb036aaf2d
2011-02-01 11:12:56 -08:00
Gloria Wang
944170f2cf Merge "- Support comfort noise in AMRExtractor - Support duration and seeking in AMRExtractor for different bit rates" 2011-02-01 10:35:10 -08:00
Leon Scroggins
df1481cda6 Merge "Only scroll if the IME is open in certain cases." 2011-02-01 10:30:42 -08:00
Nick Pelly
da20efd99c am cbf0983e: Merge "Final final final Gingerbread MR API changes." into gingerbread
* commit 'cbf0983ec97879026e87fa97ff0b5c8786bfc8f8':
  Final final final Gingerbread MR API changes.
2011-02-01 10:10:42 -08:00
Justin Ho
65a6c48235 am fdfde68f: am aece15a8: Merge "Updated notification panel alpha" into honeycomb
* commit 'fdfde68fc22d40711f6e99883e64253e1a305372':
  Updated notification panel alpha
2011-02-01 10:09:38 -08:00
Gilles Debunne
15f16e3f86 am 65383292: am 8f8aac5e: Merge "Pixel were missing on the last line of text when using MaxLines." into honeycomb
* commit '6538329258ee01b27586d8b0e46e96160d719a68':
  Pixel were missing on the last line of text when using MaxLines.
2011-02-01 10:09:29 -08:00
Tadashi G. Takaoka
87793907c4 am aa9082bc: am 2a7ade6d: Merge "Update hard keyboard status on closing input methods panel" into honeycomb
* commit 'aa9082bc799fd3d61a80d0bc95b0452100a3dca4':
  Update hard keyboard status on closing input methods panel
2011-02-01 10:09:21 -08:00
Jeff Brown
406e26d174 am a70154b0: am c623fff0: Merge "Fix keyboard hidden flag." into honeycomb
* commit 'a70154b0187603af3487bbe01b607818b12cc268':
  Fix keyboard hidden flag.
2011-02-01 10:09:11 -08:00
Dianne Hackborn
5c4e4f9066 am db569b49: am 6cf32312: Merge "Do not check features in PackageManagerService" into honeycomb
* commit 'db569b49180621c01fa55db88ed92071aae9b3bb':
  Do not check features in PackageManagerService
2011-02-01 10:08:21 -08:00
Gloria Wang
069715b6f8 - Support comfort noise in AMRExtractor
- Support duration and seeking in AMRExtractor for different bit rates

Bug 2530101

Change-Id: I12beffea73cea0ec056f0e0cf51a4a8d46d897b8
2011-02-01 10:05:59 -08:00
Nick Pelly
cbf0983ec9 Merge "Final final final Gingerbread MR API changes." into gingerbread 2011-02-01 09:39:31 -08:00
Nick Pelly
f003e26df9 Final final final Gingerbread MR API changes.
This is it. I promise.

ACTION_TECHNOLOGY_DISCOVERED -> ACTION_TECH_DISCOVERED
    This was missed in our technology->tech rename.

Hide TagTechnology.reconnect()
    This is used to reset any per-connection state in a tag, by reconnecting
    to it. The first problem is that it belongs on Tag, not TagTechnology. The
    second problem is that it may become redundant once we add Tag.rediscover()
    which will also reconnect to the tag, and will also return a new Tag with
    newly created technologies enumerated. And the third and most significant
    problem is that you can already achieve the same result by just calling
    close() followed by connect().

Hide Tag.createMockTag()
    This API cannot be used reliably. First it requires using int[] for the
    technology list, but those int constants are now hidden. Second it requires
    knowledge of the extras parcel used to fill technology specific data - also
    not public.

Introduce TagTechnology.isConnected()
    Every child class already impelmented this, and given that connect() and
    close() are defined on the interface, then isConnected() should be there
    too.

Modify Ndef.getType to return a string (not int)
    Allows more flexibility in adding new NDEF types. Current public strings are
    org.nfcforum.ndef.type1
    org.nfcforum.ndef.type2
    org.nfcforum.ndef.type3
    org.nfcforum.ndef.type4
    com.nxp.ndef.mifareclassic

Add NdefFormatable.formatReadOnly()
    This allows you to make the tag read-only at the same time as performing
    format and write. It is important because we currently don't have any
    public API to re-enumerate a tag technology list after making a tag
    NDEF compatible, so you can't perform the format as a seperate step
    without physically removing the tag from field and returning it.

Modify Readonly -> ReadOnly

Make Tag class final

Change-Id: Icf306aeb37b936ca3007e4868e99b6baceac4aff
2011-02-01 09:20:45 -08:00
Alex Sakhartchouk
c078e2cb39 Merge "Cleaning up the serialization change. Renaming the define to be more in line with what it does and removing the host stub header file." 2011-02-01 09:13:26 -08:00
Dheeraj Sharma
dacacb50ed am 22ad6243: Merge "Fix for issue 3410895 Transition regeneration not happening after changing aspect ratio of project" into honeycomb
* commit '22ad6243d7c9081e4f1a13097cfa4638cf42c3fe':
  Fix for issue 3410895 Transition regeneration not happening after changing aspect ratio of project
2011-02-01 09:02:36 -08:00
Dheeraj Sharma
22ad6243d7 Merge "Fix for issue 3410895 Transition regeneration not happening after changing aspect ratio of project" into honeycomb 2011-02-01 09:00:42 -08:00
Justin Ho
53e56c362a am 6d134754: Making default upload and download arrows more visible Bug: 3399982
* commit '6d134754ef2839da43e177b555522a5fdcb3aa9c':
  Making default upload and download arrows more visible Bug: 3399982
2011-02-01 08:46:15 -08:00
Justin Ho
6d134754ef Making default upload and download arrows more visible
Bug: 3399982

Change-Id: I0d614c590deb2b30147ae1e64edf2ef551cc1d40
2011-02-01 08:41:01 -08:00
Leon Scroggins
fe77eb6140 Only scroll if the IME is open in certain cases.
Bug:3411564

Requires a change in external/webkit.

Change-Id: I0a9a1d4ff99646e006716271f2cb1cdf0ad9b778
2011-02-01 11:10:51 -05:00
Justin Ho
daa95d679c am 50bd7362: Merge "Updating Froyo framework assets to Holo style Bug: 3362749" into honeycomb
* commit '50bd7362a184a11b9c220c01662e813672d4d48e':
  Updating Froyo framework assets to Holo style Bug: 3362749
2011-02-01 07:30:11 -08:00
Justin Ho
50bd7362a1 Merge "Updating Froyo framework assets to Holo style Bug: 3362749" into honeycomb 2011-02-01 07:28:04 -08:00
Justin Ho
b83f6987df Updating Froyo framework assets to Holo style
Bug: 3362749

Change-Id: Ibd2042f1dad4ba3fdc96944a2af93b44df1bc839
2011-02-01 07:27:36 -08:00
Kristian Monsen
ff65c9d75c am 8b8f7989: Fix for bug 3407633 Cookie not set in CookieManager - DO NOT MERGE
* commit '8b8f79898d5d0a283c481dedda2cc161a5a673b3':
  Fix for bug 3407633 Cookie not set in CookieManager - DO NOT MERGE
2011-02-01 07:19:51 -08:00
Kristian Monsen
8b8f79898d Fix for bug 3407633 Cookie not set in CookieManager - DO NOT MERGE
Setting http:// at the start if there is no :// in the url

Change-Id: Idfae4f724808267fe9c8ab3864cfc4305ddac0e7
2011-02-01 15:14:11 +00:00
Kristian Monsen
e37ce6fe79 Merge "Fix for bug 3407633 Cookie not set in CookieManager" 2011-02-01 06:34:48 -08:00
Dave Burke
508556a837 am 84a34059: Smoother scrolling by preparing offscreen tiles (credit: Ben Murdoch)
* commit '84a34059ebee2258c77a393bba423837155aad2b':
  Smoother scrolling by preparing offscreen tiles (credit: Ben Murdoch)
2011-02-01 05:15:17 -08:00
Dave Burke
84a34059eb Smoother scrolling by preparing offscreen tiles (credit: Ben Murdoch)
Change-Id: If8f6aa38174e742e869bce7144de8db84b2f7150
2011-02-01 13:09:11 +00:00
Shih-wei Liao
9f1f586f80 Use bccLinkFile instead of bccLinkBC. Remove hacking.
Change-Id: I0ffea89553e3229ee5a3262846462298fc0f5dea
2011-02-01 04:06:55 -08:00
Kristian Monsen
5762a23fb0 Fix for bug 3407633 Cookie not set in CookieManager
Adding http:// at the start of the url if there is no :// already

Change-Id: If292f60af3289a9849ff060ffacc0d97e3120132
2011-02-01 11:50:55 +00:00
Dheeraj Sharma
8afee6694b Fix for issue 3410895 Transition regeneration not happening after changing aspect ratio of project
Change-Id: Ice53fb284e029b1d22093048e8343f9ce8d853dd
2011-02-01 00:28:55 -08:00
Mike Cleron
b118bd1c2b am ad97c1b1: Merge "Remove MeasuredText debug messages" into honeycomb
* commit 'ad97c1b12872042f97414b51cb58484f9a5fd9fd':
  Remove MeasuredText debug messages
2011-01-31 23:25:02 -08:00
Justin Ho
238fb96861 am 7bae4325: Merge "Enable subclass of SeekBarVolumizer to provide a custom file for sample playback." into honeycomb
* commit '7bae4325877cfaf19b316157488450eefed6c381':
  Enable subclass of SeekBarVolumizer to provide a custom file for sample playback.
2011-01-31 23:22:53 -08:00
Mike Cleron
ad97c1b128 Merge "Remove MeasuredText debug messages" into honeycomb 2011-01-31 23:22:36 -08:00
Justin Ho
7bae432587 Merge "Enable subclass of SeekBarVolumizer to provide a custom file for sample playback." into honeycomb 2011-01-31 23:20:24 -08:00
Justin Ho
57aa5cbda2 am 0a909a12: Merge "Updated notification and effects for Honeycomb Bug: 3389139" into honeycomb
* commit '0a909a12a853f9755da031e8a39b10ca6cc1e9ac':
  Updated notification and effects for Honeycomb Bug: 3389139
2011-01-31 23:18:46 -08:00
Justin Ho
0a909a12a8 Merge "Updated notification and effects for Honeycomb Bug: 3389139" into honeycomb 2011-01-31 23:16:58 -08:00