OSDN Git Service

android-x86/frameworks-base.git
15 years agoAI 143181: am: CL 142924 Support DCM specific MMI network service.
John Wang [Fri, 27 Mar 2009 23:38:58 +0000 (16:38 -0700)]
AI 143181: am: CL 142924 Support DCM specific MMI network service.
  IExtendedNetworkService has 4 MMI service interface used by PhoneUtils to put DCM related nw service.
  void setMmiString(String number);
  CharSequence getMmiRunningText();
  CharSequence getUserMessage(CharSequence text);
  void clearMmiString();
  And the service is bind via "com.android.ussd.IExtendedNetworkService".
  Original author: johnwang
  Merged from: //branches/cupcake/...

Automated import of CL 143181

15 years agoAI 143177: am: CL 142889 Fix issue #1736153 Camera shutter sound can be muted by...
Eric Laurent [Fri, 27 Mar 2009 23:27:16 +0000 (16:27 -0700)]
AI 143177: am: CL 142889 Fix issue #1736153 Camera shutter sound can be muted by new AlarmClock setting.
  Current implementation of Camera service plays the camera shutter sound over the ALARM stream so that it cannot be muted by silent mode in order to comply to some country specific requirement. A recent change made it possible for the user to mute the ALARM stream thus making this stream not suitable any more for the camera shutter sound.
  The fix consists in creating a new stream type only accessible by native code and that cannot be muted and use it to play camera sounds.
  Original author: elaurent
  Merged from: //branches/cupcake/...

Automated import of CL 143177

15 years agoAI 143173: am: CL 142879 Fix issue #1732012 (Only show screen rotation animation...
Dianne Hackborn [Fri, 27 Mar 2009 23:16:03 +0000 (16:16 -0700)]
AI 143173: am: CL 142879 Fix issue #1732012 (Only show screen rotation animation when triggered by sensor) -- set the new surface flag as appropriate.
  Original author: hackbod
  Merged from: //branches/cupcake/...

Automated import of CL 143173

15 years agoAI 143172: am: CL 142875 [1732012] for some reason these files didn't go through...
Mathias Agopian [Fri, 27 Mar 2009 23:13:24 +0000 (16:13 -0700)]
AI 143172: am: CL 142875 [1732012] for some reason these files didn't go through in the preview check-in.
  Original author: mathias
  Merged from: //branches/cupcake/...

Automated import of CL 143172

15 years agoAI 143171: am: CL 142873 fix [1732012] Only show screen rotation animation when trigg...
Mathias Agopian [Fri, 27 Mar 2009 23:10:37 +0000 (16:10 -0700)]
AI 143171: am: CL 142873 fix [1732012] Only show screen rotation animation when triggered by sensor
  Original author: mathias
  Merged from: //branches/cupcake/...

Automated import of CL 143171

15 years agoAI 143169: am: CL 142870 Fix issue #1724917 (Applications (browser, maps, gmail)...
Dianne Hackborn [Fri, 27 Mar 2009 23:04:08 +0000 (16:04 -0700)]
AI 143169: am: CL 142870 Fix issue #1724917 (Applications (browser, maps, gmail) fail to retain their landscape state after coming out of sleep mode).  We now rely on the listeners last known orientation, and make sure to clear it when enabling/disabling.
  Also do most of the work for issue #1732012 (Only show screen rotation animation when triggered by sensor).  This just needs to be hooked up to the surface flinger API when that appears.
  Original author: hackbod
  Merged from: //branches/cupcake/...

Automated import of CL 143169

15 years agoAI 143165: am: CL 142861 Make TextView Emoji scale to match the size of the text.
Eric Fischer [Fri, 27 Mar 2009 22:52:38 +0000 (15:52 -0700)]
AI 143165: am: CL 142861 Make TextView Emoji scale to match the size of the text.
  Original author: enf
  Merged from: //branches/cupcake/...

Automated import of CL 143165

15 years agoAI 143162: am: CL 142858 Fix framework orientation issues
Suchi Amalapurapu [Fri, 27 Mar 2009 22:43:35 +0000 (15:43 -0700)]
AI 143162: am: CL 142858 Fix framework orientation issues
  Define orientation limits for various cases.
  Values between 235 and 295 are considered landscape,
  0 - 60 are considered portrait.
  0-235 are ignored since we don't support Surfaces for 180 and 270 yet.
  A linear threshold value is calculated for values between 265 and 355 to switch between landscape and portrait.(different for both cases)
  Based on current mode we not only calculate the threshold but also compare accordingly based on increasing or decreasing orientation
  BUG = 1734325
  Original author: asuchitra
  Merged from: //branches/cupcake/...

Automated import of CL 143162

15 years agoAI 143160: am: CL 142856 new-new-new-new rotation animation. it may still change...
Mathias Agopian [Fri, 27 Mar 2009 22:36:09 +0000 (15:36 -0700)]
AI 143160: am: CL 142856 new-new-new-new rotation animation. it may still change one more time.
  Original author: mathias
  Merged from: //branches/cupcake/...

Automated import of CL 143160

15 years agoAI 143159: am: CL 142855 Fix SHOW_OR_CREATE intent to correctly handle duplicate...
Jeffrey Sharkey [Fri, 27 Mar 2009 22:32:56 +0000 (15:32 -0700)]
AI 143159: am: CL 142855 Fix SHOW_OR_CREATE intent to correctly handle duplicate E-mail or IM entries for a person.
  Added a new WITH_EMAIL_OR_IM_FILTER_URI to find people with a given string as either an E-mail or IM address.  This cleans up the original code, and lets us handle duplicates when there are multiple ContactMethod matches for a single person.  (We don't get GROUP BY through the ContentProvider interface.)
  In ContactsListActivity we don't show possibly-incorrect labels when in MODE_QUERY_PICK_TO_VIEW, as any labels and values would be identical.  (The people appearing in that list are there because their ContactMethod matches the query.)
  Original author: jsharkey
  Merged from: //branches/cupcake/...

Automated import of CL 143159

15 years agoAI 143150: Fixed the problem where setEnabled(false) has no effect from onResume().
Michael Chan [Fri, 27 Mar 2009 22:06:14 +0000 (15:06 -0700)]
AI 143150: Fixed the problem where setEnabled(false) has no effect from onResume().
  The problem was that the Preference widget was reenabled when its dependency
  was in enabled state. The enabled field was basically overloaded.  The fix was
  to add an additional field to keep track of whether its dependencies were met.
  BUG=1653960

Automated import of CL 143150

15 years agoAI 143147: Manual integration
Dianne Hackborn [Fri, 27 Mar 2009 21:59:22 +0000 (14:59 -0700)]
AI 143147: Manual integration

Automated import of CL 143147

15 years agoAI 143095: Location Manager cleanup: move MockProvider to a separate file.
Mike Lockwood [Fri, 27 Mar 2009 14:46:48 +0000 (07:46 -0700)]
AI 143095: Location Manager cleanup: move MockProvider to a separate file.
  BUG=1729031

Automated import of CL 143095

15 years agoAutomated import from //branches/donutburger/...@142990,142990
Romain Guy [Thu, 26 Mar 2009 21:51:52 +0000 (14:51 -0700)]
Automated import from //branches/donutburger/...@142990,142990

15 years agoAutomated import from //branches/donutburger/...@142828,142828
Joe Onorato [Thu, 26 Mar 2009 01:22:18 +0000 (18:22 -0700)]
Automated import from //branches/donutburger/...@142828,142828

15 years agoAutomated import from //branches/donutburger/...@142826,142826
Jim Miller [Thu, 26 Mar 2009 01:18:34 +0000 (18:18 -0700)]
Automated import from //branches/donutburger/...@142826,142826

15 years agoAutomated import from //branches/donutburger/...@142820,142820
Romain Guy [Thu, 26 Mar 2009 01:04:42 +0000 (18:04 -0700)]
Automated import from //branches/donutburger/...@142820,142820

15 years agoAutomated import from //branches/donutburger/...@142801,142801
Andreas Huber [Thu, 26 Mar 2009 00:54:39 +0000 (17:54 -0700)]
Automated import from //branches/donutburger/...@142801,142801

15 years agoAutomated import from //branches/donutburger/...@142790,142790
Romain Guy [Thu, 26 Mar 2009 00:42:35 +0000 (17:42 -0700)]
Automated import from //branches/donutburger/...@142790,142790

15 years agoAutomated import from //branches/donutburger/...@142787,142787
Amith Yamasani [Thu, 26 Mar 2009 00:39:37 +0000 (17:39 -0700)]
Automated import from //branches/donutburger/...@142787,142787

15 years agoAutomated import from //branches/donutburger/...@142784,142784
Chris Tate [Thu, 26 Mar 2009 00:36:48 +0000 (17:36 -0700)]
Automated import from //branches/donutburger/...@142784,142784

15 years agoAutomated import from //branches/donutburger/...@142766,142766
Nick Pelly [Thu, 26 Mar 2009 00:33:56 +0000 (17:33 -0700)]
Automated import from //branches/donutburger/...@142766,142766

15 years agoAutomated import from //branches/donutburger/...@142727,142727
Dianne Hackborn [Thu, 26 Mar 2009 00:24:35 +0000 (17:24 -0700)]
Automated import from //branches/donutburger/...@142727,142727

15 years agoAutomated import from //branches/donutburger/...@142722,142722
Dianne Hackborn [Thu, 26 Mar 2009 00:10:37 +0000 (17:10 -0700)]
Automated import from //branches/donutburger/...@142722,142722

15 years agoAutomated import from //branches/donutburger/...@142720,142720
Eric Fischer [Thu, 26 Mar 2009 00:04:27 +0000 (17:04 -0700)]
Automated import from //branches/donutburger/...@142720,142720

15 years agoAutomated import from //branches/donutburger/...@142717,142717
Mark Womack [Wed, 25 Mar 2009 23:54:49 +0000 (16:54 -0700)]
Automated import from //branches/donutburger/...@142717,142717

15 years agoAutomated import from //branches/donutburger/...@142714,142714
Chris Tate [Wed, 25 Mar 2009 23:44:52 +0000 (16:44 -0700)]
Automated import from //branches/donutburger/...@142714,142714

15 years agoAutomated import from //branches/donutburger/...@142710,142710
Raphael Moll [Wed, 25 Mar 2009 23:33:12 +0000 (16:33 -0700)]
Automated import from //branches/donutburger/...@142710,142710

15 years agoAutomated import from //branches/donutburger/...@142700,142700
Eric Fischer [Wed, 25 Mar 2009 23:08:50 +0000 (16:08 -0700)]
Automated import from //branches/donutburger/...@142700,142700

15 years agoAutomated import from //branches/donutburger/...@142698,142698
Karl Rosaen [Wed, 25 Mar 2009 23:01:38 +0000 (16:01 -0700)]
Automated import from //branches/donutburger/...@142698,142698

15 years agoAutomated import from //branches/donutburger/...@142693,142693
Dave Sparks [Wed, 25 Mar 2009 22:43:23 +0000 (15:43 -0700)]
Automated import from //branches/donutburger/...@142693,142693

15 years agoAutomated import from //branches/donutburger/...@142687,142687
Jack Palevich [Wed, 25 Mar 2009 22:30:56 +0000 (15:30 -0700)]
Automated import from //branches/donutburger/...@142687,142687

15 years agoAutomated import from //branches/donutburger/...@142509,142509
Daisuke Miyakawa [Wed, 25 Mar 2009 05:52:27 +0000 (22:52 -0700)]
Automated import from //branches/donutburger/...@142509,142509

15 years agoAutomated import from //branches/donutburger/...@142490,142490
Romain Guy [Wed, 25 Mar 2009 05:49:43 +0000 (22:49 -0700)]
Automated import from //branches/donutburger/...@142490,142490

15 years agoAutomated import from //branches/donutburger/...@142486,142486
Jack Palevich [Wed, 25 Mar 2009 05:49:06 +0000 (22:49 -0700)]
Automated import from //branches/donutburger/...@142486,142486

15 years agoAutomated import from //branches/donutburger/...@142484,142484
Jack Palevich [Wed, 25 Mar 2009 05:48:26 +0000 (22:48 -0700)]
Automated import from //branches/donutburger/...@142484,142484

15 years agoAutomated import from //branches/donutburger/...@142472,142472
Dianne Hackborn [Wed, 25 Mar 2009 05:47:09 +0000 (22:47 -0700)]
Automated import from //branches/donutburger/...@142472,142472

15 years agoAutomated import from //branches/donutburger/...@142470,142470
Romain Guy [Wed, 25 Mar 2009 05:46:33 +0000 (22:46 -0700)]
Automated import from //branches/donutburger/...@142470,142470

15 years agoAutomated import from //branches/donutburger/...@142465,142465
Romain Guy [Wed, 25 Mar 2009 05:45:53 +0000 (22:45 -0700)]
Automated import from //branches/donutburger/...@142465,142465

15 years agoAutomated import from //branches/donutburger/...@142446,142446
Mathias Agopian [Wed, 25 Mar 2009 05:43:22 +0000 (22:43 -0700)]
Automated import from //branches/donutburger/...@142446,142446

15 years agoAutomated import from //branches/donutburger/...@142430,142430
Mathias Agopian [Wed, 25 Mar 2009 05:42:15 +0000 (22:42 -0700)]
Automated import from //branches/donutburger/...@142430,142430

15 years agoAutomated import from //branches/donutburger/...@142397,142397
Dianne Hackborn [Wed, 25 Mar 2009 05:39:49 +0000 (22:39 -0700)]
Automated import from //branches/donutburger/...@142397,142397

15 years agoAutomated import from //branches/donutburger/...@142376,142376
Jean-Michel Trivi [Wed, 25 Mar 2009 05:36:44 +0000 (22:36 -0700)]
Automated import from //branches/donutburger/...@142376,142376

15 years agoAutomated import from //branches/donutburger/...@142372,142372
Jean-Michel Trivi [Wed, 25 Mar 2009 05:35:57 +0000 (22:35 -0700)]
Automated import from //branches/donutburger/...@142372,142372

15 years agoAutomated import from //branches/donutburger/...@142347,142347
Dianne Hackborn [Wed, 25 Mar 2009 05:32:56 +0000 (22:32 -0700)]
Automated import from //branches/donutburger/...@142347,142347

15 years agoAutomated import from //branches/donutburger/...@142336,142336
John Huang [Wed, 25 Mar 2009 05:31:33 +0000 (22:31 -0700)]
Automated import from //branches/donutburger/...@142336,142336

15 years agoAutomated import from //branches/donutburger/...@142318,142318
Cedric Beust [Wed, 25 Mar 2009 05:28:03 +0000 (22:28 -0700)]
Automated import from //branches/donutburger/...@142318,142318

15 years agoAutomated import from //branches/donutburger/...@142301,142301
Joe Onorato [Wed, 25 Mar 2009 05:25:52 +0000 (22:25 -0700)]
Automated import from //branches/donutburger/...@142301,142301

15 years agoAutomated import from //branches/donutburger/...@142291,142291
Suchi Amalapurapu [Wed, 25 Mar 2009 05:24:47 +0000 (22:24 -0700)]
Automated import from //branches/donutburger/...@142291,142291

15 years agoAutomated import from //branches/donutburger/...@142239,142239
Ed Heyl [Wed, 25 Mar 2009 04:32:21 +0000 (21:32 -0700)]
Automated import from //branches/donutburger/...@142239,142239

15 years agoAutomated import from //branches/donutburger/...@142149,142149
Yu Shan Emily Lau [Wed, 25 Mar 2009 04:31:10 +0000 (21:31 -0700)]
Automated import from //branches/donutburger/...@142149,142149

15 years agoAutomated import from //branches/donutburger/...@142129,142129
Romain Guy [Wed, 25 Mar 2009 04:30:00 +0000 (21:30 -0700)]
Automated import from //branches/donutburger/...@142129,142129

15 years agoAutomated import from //branches/donutburger/...@142065,142065
Eric Laurent [Wed, 25 Mar 2009 04:23:54 +0000 (21:23 -0700)]
Automated import from //branches/donutburger/...@142065,142065

15 years agoAutomated import from //branches/donutburger/...@142022,142022
Dave Sparks [Wed, 25 Mar 2009 04:18:23 +0000 (21:18 -0700)]
Automated import from //branches/donutburger/...@142022,142022

15 years agoAutomated import from //branches/donutburger/...@141997,141997
Ficus Kirkpatrick [Wed, 25 Mar 2009 04:16:34 +0000 (21:16 -0700)]
Automated import from //branches/donutburger/...@141997,141997

15 years agoAutomated import from //branches/donutburger/...@141992,141992
Andy McFadden [Wed, 25 Mar 2009 04:16:04 +0000 (21:16 -0700)]
Automated import from //branches/donutburger/...@141992,141992

15 years agoAutomated import from //branches/donutburger/...@141979,141979
Nick Pelly [Wed, 25 Mar 2009 04:15:00 +0000 (21:15 -0700)]
Automated import from //branches/donutburger/...@141979,141979

15 years agoAutomated import from //branches/donutburger/...@141958,141958
Suchi Amalapurapu [Wed, 25 Mar 2009 04:10:53 +0000 (21:10 -0700)]
Automated import from //branches/donutburger/...@141958,141958

15 years agoAutomated import from //branches/donutburger/...@141909,141909
Mike Lockwood [Wed, 25 Mar 2009 04:04:47 +0000 (21:04 -0700)]
Automated import from //branches/donutburger/...@141909,141909

15 years agoAutomated import from //branches/donutburger/...@141885,141885
Romain Guy [Wed, 25 Mar 2009 04:04:15 +0000 (21:04 -0700)]
Automated import from //branches/donutburger/...@141885,141885

15 years agoAutomated import from //branches/donutburger/...@141868,141868
Eric Fischer [Wed, 25 Mar 2009 04:02:49 +0000 (21:02 -0700)]
Automated import from //branches/donutburger/...@141868,141868

15 years agoAutomated import from //branches/donutburger/...@141864,141864
Jaikumar Ganesh [Wed, 25 Mar 2009 04:02:13 +0000 (21:02 -0700)]
Automated import from //branches/donutburger/...@141864,141864

15 years agoAutomated import from //branches/donutburger/...@141859,141859
Jack Palevich [Wed, 25 Mar 2009 04:01:35 +0000 (21:01 -0700)]
Automated import from //branches/donutburger/...@141859,141859

15 years agoAutomated import from //branches/donutburger/...@141782,141782
Niko Catania [Wed, 25 Mar 2009 03:53:55 +0000 (20:53 -0700)]
Automated import from //branches/donutburger/...@141782,141782

15 years agoAutomated import from //branches/donutburger/...@141738,141738
Ficus Kirkpatrick [Wed, 25 Mar 2009 03:49:28 +0000 (20:49 -0700)]
Automated import from //branches/donutburger/...@141738,141738

15 years agoAutomated import from //branches/donutburger/...@141726,141726
Dianne Hackborn [Wed, 25 Mar 2009 03:47:50 +0000 (20:47 -0700)]
Automated import from //branches/donutburger/...@141726,141726

15 years agoAutomated import from //branches/donutburger/...@141711,141711
Andreas Huber [Wed, 25 Mar 2009 03:47:19 +0000 (20:47 -0700)]
Automated import from //branches/donutburger/...@141711,141711

15 years agoAutomated import from //branches/donutburger/...@141696,141696
Nick Pelly [Wed, 25 Mar 2009 03:44:48 +0000 (20:44 -0700)]
Automated import from //branches/donutburger/...@141696,141696

15 years agoAutomated import from //branches/donutburger/...@141614,141614
Wu-cheng Li [Wed, 25 Mar 2009 03:39:09 +0000 (20:39 -0700)]
Automated import from //branches/donutburger/...@141614,141614

15 years agoAutomated import from //branches/donutburger/...@141598,141598
Jason Sams [Wed, 25 Mar 2009 03:36:57 +0000 (20:36 -0700)]
Automated import from //branches/donutburger/...@141598,141598

15 years agoAutomated import from //branches/donutburger/...@141593,141593
Dave Sparks [Wed, 25 Mar 2009 03:35:44 +0000 (20:35 -0700)]
Automated import from //branches/donutburger/...@141593,141593

15 years agoAutomated import from //branches/donutburger/...@141532,141532
Mathias Agopian [Wed, 25 Mar 2009 03:29:21 +0000 (20:29 -0700)]
Automated import from //branches/donutburger/...@141532,141532

15 years agoAutomated import from //branches/donutburger/...@141529,141529
Eric Fischer [Wed, 25 Mar 2009 03:28:56 +0000 (20:28 -0700)]
Automated import from //branches/donutburger/...@141529,141529

15 years agoAutomated import from //branches/donutburger/...@141524,141524
Romain Guy [Wed, 25 Mar 2009 03:28:22 +0000 (20:28 -0700)]
Automated import from //branches/donutburger/...@141524,141524

15 years agoAutomated import from //branches/donutburger/...@141523,141523
Romain Guy [Wed, 25 Mar 2009 03:27:49 +0000 (20:27 -0700)]
Automated import from //branches/donutburger/...@141523,141523

15 years agoAutomated import from //branches/donutburger/...@141515,141515
Dianne Hackborn [Wed, 25 Mar 2009 03:26:37 +0000 (20:26 -0700)]
Automated import from //branches/donutburger/...@141515,141515

15 years agoAutomated import from //branches/donutburger/...@141502,141502
Mathias Agopian [Wed, 25 Mar 2009 03:25:29 +0000 (20:25 -0700)]
Automated import from //branches/donutburger/...@141502,141502

15 years agoAutomated import from //branches/donutburger/...@141498,141498
Dave Sparks [Wed, 25 Mar 2009 03:24:48 +0000 (20:24 -0700)]
Automated import from //branches/donutburger/...@141498,141498

15 years agoAutomated import from //branches/donutburger/...@141476,141476
Dave Sparks [Wed, 25 Mar 2009 03:23:07 +0000 (20:23 -0700)]
Automated import from //branches/donutburger/...@141476,141476

15 years agoAutomated import from //branches/donutburger/...@141469,141469
Jason Sams [Wed, 25 Mar 2009 03:21:36 +0000 (20:21 -0700)]
Automated import from //branches/donutburger/...@141469,141469

15 years agoAutomated import from //branches/donutburger/...@141445,141445
Dirk Dougherty [Wed, 25 Mar 2009 03:19:21 +0000 (20:19 -0700)]
Automated import from //branches/donutburger/...@141445,141445

15 years agoAutomated import from //branches/donutburger/...@141409,141409
Joe Onorato [Wed, 25 Mar 2009 03:13:57 +0000 (20:13 -0700)]
Automated import from //branches/donutburger/...@141409,141409

15 years agoAutomated import from //branches/donutburger/...@141391,141391
Chris Tate [Wed, 25 Mar 2009 03:11:42 +0000 (20:11 -0700)]
Automated import from //branches/donutburger/...@141391,141391

15 years agoAutomated import from //branches/donutburger/...@141355,141355
Bob Lee [Wed, 25 Mar 2009 03:06:51 +0000 (20:06 -0700)]
Automated import from //branches/donutburger/...@141355,141355

15 years agoAutomated import from //branches/donutburger/...@141347,141347
Dianne Hackborn [Wed, 25 Mar 2009 03:06:11 +0000 (20:06 -0700)]
Automated import from //branches/donutburger/...@141347,141347

15 years agoAutomated import from //branches/donutburger/...@141325,141325
Mark Womack [Wed, 25 Mar 2009 03:03:11 +0000 (20:03 -0700)]
Automated import from //branches/donutburger/...@141325,141325

15 years agoAutomated import from //branches/donutburger/...@141314,141314
Romain Guy [Wed, 25 Mar 2009 03:01:49 +0000 (20:01 -0700)]
Automated import from //branches/donutburger/...@141314,141314

15 years agoAutomated import from //branches/donutburger/...@141259,141259
Robert Greenwalt [Wed, 25 Mar 2009 02:55:37 +0000 (19:55 -0700)]
Automated import from //branches/donutburger/...@141259,141259

15 years agoAutomated import from //branches/donutburger/...@141213,141213
Niko Catania [Wed, 25 Mar 2009 02:51:09 +0000 (19:51 -0700)]
Automated import from //branches/donutburger/...@141213,141213

15 years agoAutomated import from //branches/donutburger/...@141210,141210
Dave Sparks [Wed, 25 Mar 2009 02:50:38 +0000 (19:50 -0700)]
Automated import from //branches/donutburger/...@141210,141210

15 years agoAutomated import from //branches/donutburger/...@141200,141200
Jean-Michel Trivi [Wed, 25 Mar 2009 02:48:58 +0000 (19:48 -0700)]
Automated import from //branches/donutburger/...@141200,141200

15 years agoAutomated import from //branches/donutburger/...@141195,141195
Satoshi Kataoka [Wed, 25 Mar 2009 02:48:28 +0000 (19:48 -0700)]
Automated import from //branches/donutburger/...@141195,141195

15 years agoAutomated import from //branches/donutburger/...@141168,141168
Satoshi Kataoka [Wed, 25 Mar 2009 02:42:46 +0000 (19:42 -0700)]
Automated import from //branches/donutburger/...@141168,141168

15 years agoAutomated import from //branches/donutburger/...@141149,141149
Satoshi Kataoka [Wed, 25 Mar 2009 02:39:54 +0000 (19:39 -0700)]
Automated import from //branches/donutburger/...@141149,141149

15 years agoAutomated import from //branches/donutburger/...@141139,141139
Mike Reed [Wed, 25 Mar 2009 02:38:00 +0000 (19:38 -0700)]
Automated import from //branches/donutburger/...@141139,141139

15 years agoAutomated import from //branches/donutburger/...@141126,141126
Satoshi Kataoka [Wed, 25 Mar 2009 02:36:12 +0000 (19:36 -0700)]
Automated import from //branches/donutburger/...@141126,141126

15 years agoAutomated import from //branches/donutburger/...@141112,141112
Satoshi Kataoka [Wed, 25 Mar 2009 02:33:42 +0000 (19:33 -0700)]
Automated import from //branches/donutburger/...@141112,141112

15 years agoAutomated import from //branches/donutburger/...@141106,141106
Jeff Hamilton [Wed, 25 Mar 2009 02:32:51 +0000 (19:32 -0700)]
Automated import from //branches/donutburger/...@141106,141106

15 years agoAutomated import from //branches/donutburger/...@141086,141086
Joe Onorato [Wed, 25 Mar 2009 02:29:20 +0000 (19:29 -0700)]
Automated import from //branches/donutburger/...@141086,141086

15 years agoAutomated import from //branches/donutburger/...@141083,141083
Mike Cleron [Wed, 25 Mar 2009 02:28:31 +0000 (19:28 -0700)]
Automated import from //branches/donutburger/...@141083,141083