Commit Graph

9376 Commits

Author SHA1 Message Date
Yu Shan Emily Lau
ac11ffad0b am 5813b309: am e785d180: Merge change 25826 into eclair
Merge commit '5813b3097451dc4d061eb75e5479e4ea15d886c7'

* commit '5813b3097451dc4d061eb75e5479e4ea15d886c7':
  Suppressed the invalidFrameRate as the framework is not throwing the IOException anymore.
2009-09-18 18:16:38 -07:00
Evan Millar
7e8e40b919 am 1c35d178: am 95ebd3bd: Merge change 25847 into eclair
Merge commit '1c35d178cba11a97ec8184d30673c84acb691624'

* commit '1c35d178cba11a97ec8184d30673c84acb691624':
  Fix http://b/issue?id=2099487
2009-09-18 18:16:07 -07:00
Dmitri Plotnikov
1550ec6040 am 2c6ca267: am de71cb3b: ContactsContract: Adding joined columns to the Data class definition.
Merge commit '2c6ca2676afe8fe3ee91cd03e1f31c6f61a78818'

* commit '2c6ca2676afe8fe3ee91cd03e1f31c6f61a78818':
  ContactsContract: Adding joined columns to the Data class definition.
2009-09-18 18:15:58 -07:00
Dan Egnor
2d5f5ccde8 am a63276ed: am 90d8a6a4: Merge change 25628 into eclair
Merge commit 'a63276ed69ef10ec5cc29a5c3b392a268d25bf07'

* commit 'a63276ed69ef10ec5cc29a5c3b392a268d25bf07':
  Inefficient but correct fix for 2122381: call finishBackup after every performBackup
2009-09-18 18:15:35 -07:00
Dmitri Plotnikov
72108b2a6f am 77144015: am b18b0956: Merge change 25829 into eclair
Merge commit '7714401570e01086f84e11e0383209eb0ccaf25f'

* commit '7714401570e01086f84e11e0383209eb0ccaf25f':
  Revert "ContactsContract: Adding joined columns to the Data class definition."
2009-09-18 18:15:13 -07:00
Jason Sams
392b4b13bf am d1081266: am a411bf01: Merge change 25818 into eclair
Merge commit 'd1081266712bdd1e8d37a83e5b561c2e05abd36d'

* commit 'd1081266712bdd1e8d37a83e5b561c2e05abd36d':
  Clean up some debugging and add 2 math lib routines.
2009-09-18 18:14:27 -07:00
Yu Shan Emily Lau
5813b30974 am e785d180: Merge change 25826 into eclair
Merge commit 'e785d1804dbf67913aeb25896a420abebe731e80' into eclair-plus-aosp

* commit 'e785d1804dbf67913aeb25896a420abebe731e80':
  Suppressed the invalidFrameRate as the framework is not throwing the IOException anymore.
2009-09-18 16:23:06 -07:00
Android (Google) Code Review
e785d1804d Merge change 25826 into eclair
* changes:
  Suppressed the invalidFrameRate as the framework is not throwing the IOException anymore.
2009-09-18 19:14:32 -04:00
Evan Millar
1c35d178cb am 95ebd3bd: Merge change 25847 into eclair
Merge commit '95ebd3bdd08e6ad8e13f2ca094a009fabe25ea81' into eclair-plus-aosp

* commit '95ebd3bdd08e6ad8e13f2ca094a009fabe25ea81':
  Fix http://b/issue?id=2099487
2009-09-18 16:05:27 -07:00
Dmitri Plotnikov
2c6ca2676a am de71cb3b: ContactsContract: Adding joined columns to the Data class definition.
Merge commit 'de71cb3b6f3a7484402e2288ddfaad3ea3821f59' into eclair-plus-aosp

* commit 'de71cb3b6f3a7484402e2288ddfaad3ea3821f59':
  ContactsContract: Adding joined columns to the Data class definition.
2009-09-18 16:05:18 -07:00
Android (Google) Code Review
95ebd3bdd0 Merge change 25847 into eclair
* changes:
  Fix http://b/issue?id=2099487
2009-09-18 18:59:58 -04:00
Dmitri Plotnikov
de71cb3b6f ContactsContract: Adding joined columns to the Data class definition.
The rationale is this. Since all these joined columns are currently on
different classes, we routinely see code like this:

private static final String[] PROJECTION_PHONE = {
   Data._ID, // 0
   RawContacts.CONTACT_ID, // 1
   Phone.TYPE, // 2
   Phone.NUMBER, // 3
   Phone.LABEL, // 4
   Contacts.DISPLAY_NAME, // 5
};

The most noxious line is RawContacts.CONTACT_ID

After this change, the above declaration changes to:

private static final String[] PROJECTION_PHONE = {
   Data._ID, // 0
   Data.CONTACT_ID, // 1
   Phone.TYPE, // 2
   Phone.NUMBER, // 3
   Phone.LABEL, // 4
   Data.DISPLAY_NAME, // 5
};

Change-Id: I03bfc700e4c8c58a175bc885bf7b807d7fed0744
2009-09-18 15:54:26 -07:00
Evan Millar
7ff7ddf70b Fix http://b/issue?id=2099487
Change-Id: Ib5391cc5e9d17bc4ad964471037e7f9819802a64
2009-09-18 15:45:42 -07:00
Dan Egnor
a63276ed69 am 90d8a6a4: Merge change 25628 into eclair
Merge commit '90d8a6a449dc12fea2b56b557c243e33746d914a' into eclair-plus-aosp

* commit '90d8a6a449dc12fea2b56b557c243e33746d914a':
  Inefficient but correct fix for 2122381: call finishBackup after every performBackup
2009-09-18 15:33:57 -07:00
Android (Google) Code Review
90d8a6a449 Merge change 25628 into eclair
* changes:
  Inefficient but correct fix for 2122381: call finishBackup after every performBackup
2009-09-18 18:25:33 -04:00
Dmitri Plotnikov
7714401570 am b18b0956: Merge change 25829 into eclair
Merge commit 'b18b0956afbe0730ced1c5b95c0071dba447765e' into eclair-plus-aosp

* commit 'b18b0956afbe0730ced1c5b95c0071dba447765e':
  Revert "ContactsContract: Adding joined columns to the Data class definition."
2009-09-18 15:13:59 -07:00
Android (Google) Code Review
b18b0956af Merge change 25829 into eclair
* changes:
  Revert "ContactsContract: Adding joined columns to the Data class definition."
2009-09-18 18:05:50 -04:00
Dmitri Plotnikov
ea36747114 Revert "ContactsContract: Adding joined columns to the Data class definition."
This reverts commit dd768a6a73.
2009-09-18 15:04:58 -07:00
Yu Shan Emily Lau
9d7b2fa808 Suppressed the invalidFrameRate as the framework is not throwing the IOException anymore. 2009-09-18 14:58:56 -07:00
Jason Sams
d108126671 am a411bf01: Merge change 25818 into eclair
Merge commit 'a411bf01fc8c581651af19556cc9e4bf7aca8da2' into eclair-plus-aosp

* commit 'a411bf01fc8c581651af19556cc9e4bf7aca8da2':
  Clean up some debugging and add 2 math lib routines.
2009-09-18 14:33:17 -07:00
Android (Google) Code Review
a411bf01fc Merge change 25818 into eclair
* changes:
  Clean up some debugging and add 2 math lib routines.
2009-09-18 17:25:21 -04:00
Jason Sams
d342fd7526 Clean up some debugging and add 2 math lib routines. 2009-09-18 14:24:24 -07:00
Libin Tang
a313bd7640 am 0888d5e9: am 6286f311: Merge change 25810 into eclair
Merge commit '0888d5e9f0f79814517ba27b43f306a959ef701e'

* commit '0888d5e9f0f79814517ba27b43f306a959ef701e':
  Fix pause-wait dial string conversion error
2009-09-18 14:12:47 -07:00
Dmitri Plotnikov
bc1c08f0e7 am ad479513: am 6a154178: Merge change 25800 into eclair
Merge commit 'ad479513541821012ca8ed9be288871976b24a02'

* commit 'ad479513541821012ca8ed9be288871976b24a02':
  ContactsContract: Adding joined columns to the Data class definition.
2009-09-18 14:08:49 -07:00
Nick Pelly
d5733d54c5 am d1cbfe0a: am d7638e6d: Merge change 25780 into eclair
Merge commit 'd1cbfe0a53bda0eddf281a28ac121ab5001197a7'

* commit 'd1cbfe0a53bda0eddf281a28ac121ab5001197a7':
  Reject lowercase characters in checkBluetoothAddress().
2009-09-18 14:08:41 -07:00
Evan Millar
f831c022a5 am 9fd42199: am 2c22a510: More hi-res assets, and darken background color to donut level.
Merge commit '9fd4219923901a3c1fdb5789431e49b76538fb91'

* commit '9fd4219923901a3c1fdb5789431e49b76538fb91':
  More hi-res assets, and darken background color to donut level.
2009-09-18 14:08:29 -07:00
Daniel Sandler
e0d85c8cec am bf72ec17: am e5a6d16f: Merge change 25785 into eclair
Merge commit 'bf72ec17bf20f1142c96897f5b6775f6d31a85d3'

* commit 'bf72ec17bf20f1142c96897f5b6775f6d31a85d3':
  Fix http://b/2126318 (density test fails due to wrong-size asset stripping)
2009-09-18 14:08:18 -07:00
Libin Tang
0888d5e9f0 am 6286f311: Merge change 25810 into eclair
Merge commit '6286f311c3b80ee6b4b1985a290a889f895203f9' into eclair-plus-aosp

* commit '6286f311c3b80ee6b4b1985a290a889f895203f9':
  Fix pause-wait dial string conversion error
2009-09-18 14:08:12 -07:00
Daniel Sandler
eb9d6fc6c0 am e064bd8e: am 3f90aae6: Merge change 25786 into eclair
Merge commit 'e064bd8e34f7908c7291956702dce8ae292f67ca'

* commit 'e064bd8e34f7908c7291956702dce8ae292f67ca':
  Fix http://b/2086471 (list view headers too dark in mdpi).
2009-09-18 14:08:07 -07:00
Android (Google) Code Review
6286f311c3 Merge change 25810 into eclair
* changes:
  Fix pause-wait dial string conversion error
2009-09-18 17:02:56 -04:00
Dmitri Plotnikov
ad47951354 am 6a154178: Merge change 25800 into eclair
Merge commit '6a15417849afab889f1f0cd79e655eaac6b45dca' into eclair-plus-aosp

* commit '6a15417849afab889f1f0cd79e655eaac6b45dca':
  ContactsContract: Adding joined columns to the Data class definition.
2009-09-18 14:00:03 -07:00
Nick Pelly
d1cbfe0a53 am d7638e6d: Merge change 25780 into eclair
Merge commit 'd7638e6de29d475623ac7f05a6fa92e92362be22' into eclair-plus-aosp

* commit 'd7638e6de29d475623ac7f05a6fa92e92362be22':
  Reject lowercase characters in checkBluetoothAddress().
2009-09-18 13:59:55 -07:00
Evan Millar
9fd4219923 am 2c22a510: More hi-res assets, and darken background color to donut level.
Merge commit '2c22a51072fd71e3a50df9c26f9078bd62c90cd3' into eclair-plus-aosp

* commit '2c22a51072fd71e3a50df9c26f9078bd62c90cd3':
  More hi-res assets, and darken background color to donut level.
2009-09-18 13:59:46 -07:00
Daniel Sandler
bf72ec17bf am e5a6d16f: Merge change 25785 into eclair
Merge commit 'e5a6d16f26543061a0fc815ba90644a44995e025' into eclair-plus-aosp

* commit 'e5a6d16f26543061a0fc815ba90644a44995e025':
  Fix http://b/2126318 (density test fails due to wrong-size asset stripping)
2009-09-18 13:59:38 -07:00
Android (Google) Code Review
6a15417849 Merge change 25800 into eclair
* changes:
  ContactsContract: Adding joined columns to the Data class definition.
2009-09-18 16:54:34 -04:00
Dmitri Plotnikov
dd768a6a73 ContactsContract: Adding joined columns to the Data class definition.
The rationale is this.  Since all these joined columns are currently on
different classes, we routinely see code like this:

private static final String[] PROJECTION_PHONE = {
        Data._ID,                   // 0
        RawContacts.CONTACT_ID,     // 1
        Phone.TYPE,                 // 2
        Phone.NUMBER,               // 3
        Phone.LABEL,                // 4
        Contacts.DISPLAY_NAME,      // 5
    };

The most noxious line is RawContacts.CONTACT_ID

After this change, the above declaration changes to:

    private static final String[] PROJECTION_PHONE = {
        Data._ID,                   // 0
        Data.CONTACT_ID,            // 1
        Phone.TYPE,                 // 2
        Phone.NUMBER,               // 3
        Phone.LABEL,                // 4
        Data.DISPLAY_NAME,          // 5
    };

Change-Id: I820e68efd6c1364241596f826c4da1b9c2defe11
2009-09-18 13:53:49 -07:00
Android (Google) Code Review
d7638e6de2 Merge change 25780 into eclair
* changes:
  Reject lowercase characters in checkBluetoothAddress().
2009-09-18 16:51:36 -04:00
Evan Millar
2c22a51072 More hi-res assets, and darken background color to donut level.
Includes hi-res divider and header assets.

Change-Id: I8fbeb619509886f707fe604a8057c6beda1e03a7
2009-09-18 13:27:09 -07:00
Android (Google) Code Review
e5a6d16f26 Merge change 25785 into eclair
* changes:
  Fix http://b/2126318 (density test fails due to wrong-size asset stripping)
2009-09-18 15:23:40 -04:00
Daniel Sandler
e064bd8e34 am 3f90aae6: Merge change 25786 into eclair
Merge commit '3f90aae6184bf0713ad684fcea3c4836479b9de4' into eclair-plus-aosp

* commit '3f90aae6184bf0713ad684fcea3c4836479b9de4':
  Fix http://b/2086471 (list view headers too dark in mdpi).
2009-09-18 12:23:39 -07:00
Jacek Surazski
98ccd4d5e6 am 64f0e243: am c3a3b399: Merge change 25752 into eclair
Merge commit '64f0e2430fa59105943cfe59ce2593b9b086514f'

* commit '64f0e2430fa59105943cfe59ce2593b9b086514f':
  Add a Gservices setting to controll the app error reporting feature.
2009-09-18 12:23:07 -07:00
Android (Google) Code Review
3f90aae618 Merge change 25786 into eclair
* changes:
  Fix http://b/2086471 (list view headers too dark in mdpi).
2009-09-18 15:18:27 -04:00
Daniel Sandler
4d5babce58 Fix http://b/2086471 (list view headers too dark in mdpi). 2009-09-18 15:17:33 -04:00
Jacek Surazski
64f0e2430f am c3a3b399: Merge change 25752 into eclair
Merge commit 'c3a3b399a9d7707b7f3c4108e0e31a1b664a6f22' into eclair-plus-aosp

* commit 'c3a3b399a9d7707b7f3c4108e0e31a1b664a6f22':
  Add a Gservices setting to controll the app error reporting feature.
2009-09-18 12:13:35 -07:00
Daniel Sandler
da06e32e4c Fix http://b/2126318 (density test fails due to wrong-size asset stripping)
The density test expects all resources of all densities to be included, but specifying a density for a particular device build kills that. We therefore add all the required densities explicitly to the Makefile to compensate.
2009-09-18 15:12:07 -04:00
Robert Greenwalt
e3d0cc0ec5 am b6b7df1d: am 66fdd84e: Merge change 25775 into eclair
Merge commit 'b6b7df1dcdd81eeb2929c58df340ecf7038c7157'

* commit 'b6b7df1dcdd81eeb2929c58df340ecf7038c7157':
  Fix typo in SECONDARY_DATA_RETRY_CONFIG
2009-09-18 12:08:43 -07:00
Chih-Chung Chang
d93ee52927 am 87012028: am f22b7410: Merge change 25464 into eclair
Merge commit '87012028344dae6e9a0b0ad4615797284ce6c83f'

* commit '87012028344dae6e9a0b0ad4615797284ce6c83f':
  Improve ExifInterface API.
2009-09-18 12:08:33 -07:00
Android (Google) Code Review
c3a3b399a9 Merge change 25752 into eclair
* changes:
  Add a Gservices setting to controll the app error reporting feature.
2009-09-18 15:07:28 -04:00
Robert Greenwalt
b6b7df1dcd am 66fdd84e: Merge change 25775 into eclair
Merge commit '66fdd84e28a0619b7981ca00f2f2cd7681dbc82d' into eclair-plus-aosp

* commit '66fdd84e28a0619b7981ca00f2f2cd7681dbc82d':
  Fix typo in SECONDARY_DATA_RETRY_CONFIG
2009-09-18 12:02:59 -07:00
Chih-Chung Chang
8701202834 am f22b7410: Merge change 25464 into eclair
Merge commit 'f22b74103a2ea2fecdb80deb6a0baffa84e66776' into eclair-plus-aosp

* commit 'f22b74103a2ea2fecdb80deb6a0baffa84e66776':
  Improve ExifInterface API.
2009-09-18 12:02:50 -07:00