Commit Graph

8498 Commits

Author SHA1 Message Date
Nick Alexander
1c79307779 Bug 967022 - Fix Gingerbread progressbar animation bustage. r=rnewman
--HG--
extra : rebase_source : 1db653efb3d0656b9208ade6859f86fb10f1be3b
2014-03-13 17:06:29 -07:00
Nick Alexander
a185fd8134 Bug 978944 - Use Android native code pbkdf2sha256 in FxAccounts. r=rnewman,mcomella
--HG--
extra : rebase_source : 73cc0d3b480246f64a07388caafda56465039bda
2014-03-13 17:04:45 -07:00
Brian Nicholson
0546683495 Bug 981676 - Fix backout of bugs 980438/962103. r=mfinkle 2014-03-13 14:42:19 -07:00
Brian Nicholson
e172cd6e2d Bug 979166 - Refactor dynamic toolbar code. r=lucasr
--HG--
extra : rebase_source : 665621241d47985699a6994a8aea989ac29f9f7e
2014-03-13 12:29:39 -07:00
Lucas Rocha
52475f37ac Bug 981676 - Backout progress bar refinements from bugs 980438/962103 (r=mfinkle) 2014-03-13 12:57:51 -04:00
Eugen Sawin
c2a316e2f1 Bug 981483 - Clear helper app page actions on page load. r=wesj 2014-03-10 05:26:41 +01:00
Margaret Leibovic
9c272e5f0b backout 1acaa42690a6 for memory regressions 2014-03-13 08:21:38 -07:00
Margaret Leibovic
7a270dcf31 backout 7c458c70cd5c for suspected talos regression 2014-03-13 07:48:57 -07:00
Ryan VanderMeulen
a2a03608f4 Backed out changesets c6ca1aa3887a, d741e117a033, 1fd26e822e73, and 720962c9f993 (bug 961665) for build bustage and xpcshell failures. 2014-03-13 10:32:57 -04:00
Kartikaya Gupta
9de75962ee Bug 981636 - Only disable double-tap-to-zoom if a meta-viewport tag is actually specified. r=mbrubeck 2014-03-13 09:52:50 -04:00
David Rajchenbach-Teller
b1566a0457 Bug 961665 - Native implementation of OS.File.read, native bits. r=froydnj, r=bz, r=paolo 2014-03-13 09:51:22 -04:00
Eugen Sawin
bf21fa8295 Bug 974771 - Ignore open request for unfinished download. r=wesj 2014-03-06 22:19:17 +01:00
Carsten "Tomcat" Book
0b804927d7 merge fx-team to mozilla-central 2014-03-13 12:52:51 +01:00
Wes Kocher
93661497bd Merge m-c to fx-team 2014-03-12 21:23:37 -07:00
Wes Kocher
c317000cea Merge fx-team to m-c 2014-03-12 20:01:45 -07:00
Wes Kocher
a15b6e2f00 Merge m-c to m-i 2014-03-12 21:21:07 -07:00
Geoff Brown
ce7ca57333 Bug 966788 - Increase wait time for Gecko:Ready; r=mcomella 2014-03-12 17:44:54 -06:00
Michael Comella
35f2b81da7 Bug 959652: Use NativeCrypto.sha1. r=rnewman 2014-03-11 19:43:20 -07:00
Lucas Rocha
c31092879c Bug 963817 - Wrap HomeStorage data insertion loop in a transaction (r=margaret) 2014-03-12 17:02:50 +00:00
Richard Newman
75846416f7 Bug 982191 - The resource://services-common/ alias is broken in Fennec. r=nalexander,lucasr 2014-03-12 09:52:50 -07:00
Richard Newman
684cd20a21 Bug 945429 - Remove log output. r=trivial 2014-03-12 09:49:48 -07:00
Lucas Rocha
5c4f78a4b3 Bug 969055 - Validate items being saved with HomeProvider API (r=margaret) 2014-03-12 16:37:02 +00:00
Chris Kitching
f04ac8d0be Bug 969417 - Cleanup naming conventions in favicon code. r=rnewman 2014-03-12 16:20:38 +00:00
Chris Kitching
c1031fa21d Bug 969417 - Reduce insanity in favicon cache concurrency. r=rnewman 2014-03-12 16:20:36 +00:00
Margaret Leibovic
84d368e508 Bug 976232 - Disable home banner in guest mode. r=wesj 2014-03-12 08:57:30 -07:00
Margaret Leibovic
412f8103fe Bug 979101 - Enable remote debugger by default on nightly builds. r=mfinkle 2014-03-12 08:57:30 -07:00
Margaret Leibovic
44400adb7f Bug 976308 - Remove search engine name from initial search suggestions prompt. r=liuche 2014-03-12 08:57:30 -07:00
Margaret Leibovic
7f5ad9821b Bug 982461 - Support launching an intent to the current application package. r=wesj 2014-03-12 08:57:29 -07:00
Nick Alexander
d225664e41 Bug 974627 - Empty contentDescription throughout. r=rnewman 2014-03-10 21:35:32 -07:00
Nick Alexander
2a693e3f20 Bug 979537 - Make geckoview_resources.zip include res/values/strings.xml. r=trivial
The commit looks large, but it's trivial: just replacing $(android_res_files) with $(all_resources) in

+geckoview_resources.zip: $(all_resources) $(GLOBAL_DEPS)

It looks bigger because it needs to move below the definition of $(all_resources).
2014-03-12 17:22:27 -07:00
Nick Alexander
28663ebee3 Bug 979388 - Make aapt invocation rebuild R.java. r=glandium
This commit adds an empty recipe to dependencies of .aapt.deps, which
forces the appropriate gecko-R.jar rebuild.  This is because Make treats
targets with no recipe at all differently than targets with an empty
recipe, in a way that defeats our dependencies.

What appeared to be happening is the following:

Touch a resource.  On the next build, .aapt.deps is stale, so aapt is
invoked, which generates R.java, and we touch .aapt.deps.

Now R.java depends on .aapt.deps, but this does not appear to force Make
to consider targets that depend on R.java to be stale.  A target that
depends on R.java (such as gecko-R.jar) itself compares timestamps and
finds that gecko-R.jar is newer than R.java (from the previous build),
and this comparison appears to happen before aapt is invoked.  So even
though .aapt.deps is seen to be stale, and by transitivity R.java is
stale, this does not mark gecko-R.jar as stale.  The timestamp check
between R.java and gecko-R.jar appears to happen *before* aapt is
invoked.

On the second build following the update, the R.java generated in the
previous build is newer than gecko-R.jar, triggering the observed
rebuild of gecko-R.jar.
2014-03-12 17:22:27 -07:00
Nick Alexander
fbd080396b Bug 982138 - Ignore #* in aapt invocations in mobile/android/base. r=blassey 2014-03-12 17:22:27 -07:00
Myk Melez
ff45f79479 bug 982182 - fix regressions that hang checking for updates for webapps; r=mfinkle 2014-03-12 11:57:45 -07:00
Myk Melez
c64728d4a3 bug 982552 - use DEBUG variable to enable logging in debug build; r=mfinkle 2014-03-12 11:57:22 -07:00
Myk Melez
bfcd61620f bug 978836 - update URLs to production servers; r=mfinkle 2014-03-12 09:08:30 -07:00
Geoff Brown
ddd528ae7b Bug 979612 - Fix testPictureLinkContextMenu on Android 2.3; r=margaret 2014-03-12 09:42:00 -06:00
Wes Johnston
4bac935c13 Bug 968182 - Hide the Android menu before reshowing it with a submenu. r=lucasr 2014-03-11 23:01:22 -07:00
Phil Ringnalda
e2781e6a10 Back out 9fe5610363b3 (bug 959652) for bustage 2014-03-11 21:53:43 -07:00
Michael Comella
707bc99a8a Bug 959652: Use NativeCrypto.sha1. r=rnewman 2014-03-11 19:43:20 -07:00
Chenxia Liu
844c16ae38 Bug 978825 - Add android:summary text to Customize > Search. r=sola 2014-03-11 18:59:37 -07:00
Chenxia Liu
4fbdf37462 Bug 970743 - Add android:summary text to Customize > Home. r=sola 2014-03-11 18:59:34 -07:00
Ryan VanderMeulen
00f626009e Merge m-c to fx-team. 2014-03-11 13:23:55 -07:00
Ryan VanderMeulen
3ba438c548 Merge fx-team to m-c. 2014-03-08 01:12:53 -08:00
Kartikaya Gupta
58bd5444ea Bug 981728 - Fix missing close-paren. r=wesj 2014-03-11 08:07:23 -04:00
Lucas Rocha
bfab5d4467 Bug 981614 - Do a null check when handling toolbar focus change in HomePager (r=jdover) 2014-03-11 17:58:31 +00:00
Marcos Cezar
2bd31ee6d0 Bug 956360 - Use Arrays.asList when possible. r=jchen 2014-03-04 14:32:47 -03:00
Carsten "Tomcat" Book
78ca955c60 Backed out changeset 922daaaeb05a (bug 974627) for permament android s4 test failure 2014-03-11 12:23:56 +01:00
Nick Alexander
779536081c Bug 974627 - Empty contentDescription throughout. r=rnewman 2014-03-10 21:35:32 -07:00
Nick Alexander
0952880137 Bug 980478 - Generate assertions with no iat and exp: 9999999999999L. r=rnewman 2014-03-10 21:04:25 -07:00
Nick Alexander
d0cb9b8bce Bug 915312 - Follow-up: Land background JUnit 3 tests. r=nalexander 2014-03-10 20:53:43 -07:00