Ehsan Akhgari
9854ac6166
Bug 872127 - Part 2: Replace mozilla/StandardInteger.h with stdint.h; r=Waldo,ted
2013-07-30 10:25:31 -04:00
Benjamin Smedberg
15f30eed45
Bug 888510 - In-content theming fixup for the new plugin click-to-activate. Remove the "lightweight" transparent click-to-play theming and make the normal styling plain grey. Switch from a CSS gradient to an image gradient because of performance issues. Highlight the "check for updates" button for outdated plugins. Icons by shorlander and lco, ui-review=lco r=jaws
...
--HG--
rename : toolkit/themes/osx/mozapps/plugins/contentPluginCrashed.png => toolkit/themes/shared/plugins/contentPluginCrashed.png
rename : toolkit/themes/osx/mozapps/plugins/contentPluginDownload.png => toolkit/themes/shared/plugins/contentPluginDownload.png
rename : toolkit/themes/osx/mozapps/plugins/contentPluginMissing.png => toolkit/themes/shared/plugins/contentPluginMissing.png
rename : toolkit/themes/windows/mozapps/plugins/pluginProblem.css => toolkit/themes/shared/plugins/pluginProblem.css
2013-07-26 09:30:27 -04:00
Shih-Chiang Chien
0e69566882
Bug 891009 - Remove the selected patch after unrecoverable error. r=rstrong
2013-07-11 19:11:58 +08:00
Benjamin Smedberg
79534d3c5a
Bug 888292 - De-emphasize the plugin icon in the address bar when it doesn't need to catch the user's attention. With this change, the only time the icon will be "alert blue" is when a plugin is click-to-activate and it's too small to show the overlay inline in the page. Icons provided by shorlander. ui-review=lco r=jaws
...
--HG--
extra : rebase_source : 29f8c8ad4fd0234f1d2bf14451416ac7f744c6fb
2013-07-19 10:02:48 -04:00
Irving Reid
afb6f395b8
Bug 853388: Implement Promise-based deferred save module for asynchronous file writes; r=Yoric
2013-07-13 12:36:40 -04:00
Irving Reid
d81f8586cf
Bug 853388: Make existing tests a little more robust and easier to debug, also callback stack friendly; r=unfocused
2013-07-13 12:36:27 -04:00
Gregory Szorc
5c25cc9036
No Bug - Removing empty Makefile.in files; r=me
2013-07-18 09:09:28 -07:00
Bobby Holley
ea7a9f6f09
Bug 889911 - Switch xpcshell to SystemErrorReporter with a little bit of special magic. r=mrbkap
...
XPCShell currently overrides all the JSContexts whose creation it observes with
its own custom error reporter. This reporter does all sorts of funny things which
we try to clean up for the most part. But there are a few very intricate
considerations at play.
First, the old xpcshell error reporter does some mumbo jumbo with the
XPCCallContext stack to try to guess whether some other code might catch the
exception. This is total garbage on a number of fronts, particularly because
the XPCCallContext stack has no concept of saved frame chains, nested event
loops, sandbox boundaries, origin boundaries, or any of the myriad of
complicating factors that determine whether or not an exception will propagate.
So we get rid of it. But this causes some crazy debugger tests to fail, because
they rely on an exception from uriloader/exthandler/nsHandlerService.js getting
squelched, and can't handle anybody reporting errors to the console service at
the particular moment of contortionism when the exception is raised. So we need
to introduce an explicit mechanism to disable the error reporter here to keep
things running.
Second, we have to be very careful about tracking the return status of the
xpcshell binary. The old code would simply flag an error code if the error
handler was invoked, and we can mostly continue to do that. But there are some
complications. See the comments.
Finally, we don't anything analogous in XPCShellEnvironment, because I have
patches in bug 889714 to remove its state-dependence on the error reporter.
I'll switch it to SystemErrorReporter in that bug.
2013-07-16 20:38:44 -07:00
Robert Strong
9627ecc7ce
Test followup fix for Bug 889183 - mozapps/update xpcshell tests cannot be run concurrently. r=me
2013-07-16 19:25:36 -07:00
Robert Strong
1a217b7215
Part 2. add run-sequentially to xpcshell ini files for tests that can't run in parallel yet - Bug 889183 - mozapps/update xpcshell tests cannot be run concurrently. r=mihneadb
2013-07-16 19:19:25 -07:00
Robert Strong
b5aec1f74a
Part 1. use custom XREExeF and UpdRootD - Bug 889183 - mozapps/update xpcshell tests cannot be run concurrently. r=bbondy
2013-07-16 19:19:03 -07:00
Robert Strong
7ba644048c
Simplify xpcshell ini files - Bug 894115 - xpcshell ini file confusion. r=bbondy
2013-07-16 19:18:44 -07:00
Ryan VanderMeulen
ec49bf763f
Backed out 10 changesets (bug 889911, bug 889714) due to merge conflicts on a CLOSED TREE.
...
Backed out changeset 1a1a536121da (bug 889714)
Backed out changeset 2cd88ef9eea5 (bug 889714)
Backed out changeset 489723887eca (bug 889714)
Backed out changeset 2b38ce22cf97 (bug 889714)
Backed out changeset 87b0a59a5d51 (bug 889714)
Backed out changeset 13229bab2ba4 (bug 889714)
Backed out changeset 234bd6d1fbed (bug 889714)
Backed out changeset 4f5f62284917 (bug 889714)
Backed out changeset 18537c4436c7 (bug 889911)
Backed out changeset ca7060ab1588 (bug 889911)
2013-07-16 21:16:31 -04:00
Bobby Holley
b5be668356
Bug 889911 - Switch xpcshell to SystemErrorReporter with a little bit of special magic. r=mrbkap
...
XPCShell currently overrides all the JSContexts whose creation it observes with
its own custom error reporter. This reporter does all sorts of funny things which
we try to clean up for the most part. But there are a few very intricate
considerations at play.
First, the old xpcshell error reporter does some mumbo jumbo with the
XPCCallContext stack to try to guess whether some other code might catch the
exception. This is total garbage on a number of fronts, particularly because
the XPCCallContext stack has no concept of saved frame chains, nested event
loops, sandbox boundaries, origin boundaries, or any of the myriad of
complicating factors that determine whether or not an exception will propagate.
So we get rid of it. But this causes some crazy debugger tests to fail, because
they rely on an exception from uriloader/exthandler/nsHandlerService.js getting
squelched, and can't handle anybody reporting errors to the console service at
the particular moment of contortionism when the exception is raised. So we need
to introduce an explicit mechanism to disable the error reporter here to keep
things running.
Second, we have to be very careful about tracking the return status of the
xpcshell binary. The old code would simply flag an error code if the error
handler was invoked, and we can mostly continue to do that. But there are some
complications. See the comments.
Finally, we don't anything analogous in XPCShellEnvironment, because I have
patches in bug 889714 to remove its state-dependence on the error reporter.
I'll switch it to SystemErrorReporter in that bug.
2013-07-16 18:04:49 -07:00
Geoff Lankow
024e54a236
Bug 891181 - Textbox-based <setting> bindings un-focus when forward slash (/) key is pressed. r=bmcbride
2013-07-09 20:31:17 +12:00
Trevor Saunders
82e5558b37
bug 887483 - remove a bunch of useless assignments to FORCE_STATIC_LIB implied by LIBXUL_LIBRARY=1 r=mshal
2013-07-11 11:06:34 -04:00
Masatoshi Kimura
b001d00a05
Bug 888870 - Add Windows 8.1 support to WinUtils::GetWindowsVersion. r=jimm
2013-07-12 06:26:55 +09:00
Robert Strong
9c219ded02
Bug 886545 - Provide method to check for updates to support bug 885641. r=bbondy
2013-07-11 13:46:32 -07:00
Matthew Noorenberghe
95c3e0efce
Bug 887965 - Lower AddonUpdateChecker timeout to 1 minute. r=Mossop
2013-06-28 23:26:27 -04:00
Joey Armstrong
a6b9800cfb
bug 870407: cleanup bug. r=mshal
2013-07-08 11:53:00 -04:00
Robert Strong
15037c434e
Test fix for Bug 889860 - Intermittent test_0200_app_launch_apply_update.js | Test timed out | test failed (with xpcshell return code: 1). r=bbondy
2013-07-05 13:11:44 -07:00
Joey Armstrong
e44d529d0e
bug 870370: EXTRA_COMPONENTS cleanup for conversion patches #1 & #2 .
2013-07-03 12:01:06 -04:00
Robert Strong
8df5780898
Bug 853198 - Defend against bad system clocks. r=bbondy
2013-07-02 19:05:27 -07:00
Xavier Fung
221217ebbf
Bug 888158 - Make configure to detect Visual Studio 2013 compiler. r=ted
2013-07-03 10:52:32 +09:00
Richard Newman
d003539ad1
Merge m-c to m-i.
2013-07-02 18:52:48 -07:00
Nick Alexander
a19a1cb490
Merge m-c to s-c
2013-07-02 14:59:21 -07:00
Nick Alexander
eb3d11a9d7
Bug 887115 - Make Android packager expect omnijar in root directory. r=glandium
2013-07-02 12:00:34 -07:00
Ms2ger
032d1cbb66
Bug 887012 - Remove some emptyish makefiles; r=gps
2013-07-01 09:02:32 +02:00
Nick Alexander
3f84ff17ac
Bug 888646 - Update missed use of SimpleManifestSink API. r=trivial
...
This is a simple follow-up to Bug 887121.
2013-06-29 20:15:08 -07:00
Nick Alexander
8865454ccd
Bug 887121 - Make packager install and szip .so libraries in assets/ directly. r=glandium
...
This adds a Component type to the mozbuild.mozpack package manifest
parser, and teaches the packager to accept components of the form
[name destdir="dir"]. Then we update the Android package manifest and
simplify the packager code.
I would have liked to make the packager put mozglue.so and
MOZ_CHILD_PROCESS_NAME in lib/$(ABI_DIR) directly, but this turned out
to be awkward. Since MOZ_CHILD_PROCESS_NAME needs to have lib/ in its
name to load successfully on Android, we would have to add notation in
package manifests to install bin/lib/*plugin-container* to
lib/$(ABI_DIR)/*plugin-container*.
2013-06-28 09:10:57 -07:00
Ryan VanderMeulen
3fb3e95c39
Bug 874080 - Add an early return to nsExternalHelperAppService::GetTypeFromExtension when called with an empty extension parameter. r=paolo
2013-07-02 15:49:06 -04:00
Brian R. Bondy
eada7b5ae3
Bug 888361. r=rstrong
2013-07-01 19:11:52 -04:00
Brian R. Bondy
55219ddd58
Bug 888314. r=rstrong
2013-07-01 19:11:59 -04:00
Brian R. Bondy
4fd58dcc9d
Bug 859072. r=rstrong
2013-07-01 19:12:06 -04:00
Robert Strong
7fbea57e5f
Test only patch - Bug 626833 - Intermittent failure in test_0200_app_launch_apply_update.js. r=bbondy
2013-06-27 12:58:14 -07:00
Robert Strong
9a7dc847c8
Take 2 - fix a likely race condition that might fix Bug 626833 - Intermittent test_0200_app_launch_apply_update.js. r=bbondy
2013-07-01 19:31:38 -07:00
Mark Banner
e62e5de495
Bug 887185 Plugins test assumes click-to-play is enabled by default - ensure it is enabled for apps that don't yet have it enabled. r=bsmedberg.
2013-06-27 08:18:35 +01:00
Bobby Holley
5fdbeec95c
Bug 887098 - Cache nodePrincipal when InstallTrigger is bound. r=gavin
2013-06-26 21:41:55 -07:00
Shih-Chiang Chien
2f8a8db126
Bug 880737 - Cancel retry timer while pausing OTA download. r=bbondy
2013-06-26 21:35:29 -04:00
Mike Shal
b77ae67471
Bug 880245 - Move EXTRA_JS_MODULES to moz.build (batch #2 ); r=joey
2013-06-17 15:22:56 -04:00
Irving Reid
fd3beb0d0a
Bug 874890: Shut down Addon Manager in profile-before-change r=mossop
2013-06-25 19:43:56 -04:00
Robert Strong
6d2d0f465e
Bug 886647 - passed unused in TestAUSHelper.cpp. r=bbondy
2013-06-25 13:16:28 -07:00
Benjamin Smedberg
b7223c15b5
Bug 886423 - Turn on the click-to-play UI by default in Firefox desktop. As a side effect, remove the plugin permission from about:permissions because we're using per-plugin permission not per-site and about:permissions doesn't know about that. (page info knows about it) r=keeler
2013-06-25 11:57:30 -04:00
Ryan VanderMeulen
69faa42ffb
Merge m-c and inbound.
2013-06-24 14:02:59 -04:00
Nick Alexander
5dea3e088b
Bug 873569 - Follow-up: don't delete assets/omni.ja during unpack. r=me
...
The issue is that in INNER_UNMAKE_PACKAGE I was deleting
assets/omni.ja, which is needed in INNER_MAKE_PACKAGE. This breaks
language repacks. This fix should at least allow repacks to proceed
further.
2013-06-24 09:55:21 -07:00
Benjamin Smedberg
d0ea1dfb67
Bug 880735 test fixups:
...
* Add a test-only setter to the center-item XBL binding
* add a head.js function to remove plugin permissions for use in cleanup functions
* browser_pluginnotification.js - lots of fixes for the core feature tests
* Alter test_bug751809 not to assume that clicking the page overlay will directly activate the plugin
* Alter browser_CTP_plugins.js because disabled plugins now do show up in the plugin doorhanger
* remove browser_CTPScriptPlugin.js and supporting files because we no longer auto-pop based on scripting
* fix browser_CTP_drag_drop.js so that active plugins still show the doorhanger icon, and other fixup
* fix browser_bug743421.js to expect the doorhanger all the time and activate it correctly
* fix browser_bug752516.js to check for doorhanger activation instead of plugin activation
* remove browser_bug818009.js and supporting files because they are testing something that no longer exists
* alter browser_bug820497.js so that it shows the popup notification before checking .centerActions, since we populate that data lazily now
* browser_plugins_added_dynamically.js: remove the "activate all" tests which are no longer relevant and fix the rest to match the new doorhanger structure.
2013-06-24 08:51:07 -04:00
Mook
ea7705c3e6
bug 884686: inline add-on settings: don't set prefs on type=multi if no prefs are specified (r=darktrojan)
2013-06-20 20:37:58 -07:00
Ms2ger
313ff55fd6
Merge m-c to m-i.
2013-06-23 13:44:01 +02:00
Ms2ger
5a63e5bff8
Bug 882848 - Use MOCHITEST_BROWSER_FILES more; r=gps
2013-06-23 09:16:19 +02:00
Ms2ger
72a5c4868f
No bug - Don't spam lists of files during the build in toolkit/mozapps/extensions/test makefiles; r=ted
2013-06-23 09:16:06 +02:00
Robert Strong
19ba239d3f
Additional test patch - Bug 843497 - Update check says 'up to date' for out of date versions on unsupported OS versions. r=bbondy
2013-06-22 13:37:25 -07:00
Robert Strong
e92caa4f91
xpcshell test fixup - Bug 843497 - Update check says 'up to date' for out of date versions on unsupported OS versions. r=me for test fixup
2013-06-22 13:37:20 -07:00
Robert Strong
b4b7479bff
3. tests patch - Bug 843497 - Update check says 'up to date' for out of date versions on unsupported OS versions. r=bbondy
2013-06-22 13:37:16 -07:00
Robert Strong
3ce510c4ea
1. main patch - Bug 843497 - Update check says 'up to date' for out of date versions on unsupported OS versions. r=bbondy
2013-06-22 13:37:07 -07:00
Phil Ringnalda
06e17a3f05
Back out 7c8506b0729d (bug 843497) since I already backed out the rest of the bug's patches for xpcshell failures
2013-06-21 19:52:48 -07:00
Phil Ringnalda
53b5971d17
Back out 01bc57172461:5bd9adbd3b15 (bug 843497) for xpcshell failures
2013-06-21 19:49:47 -07:00
Robert Strong
fe40f51213
Additional test patch - Bug 843497 - Update check says 'up to date' for out of date versions on unsupported OS versions. r=bbondy
2013-06-21 19:39:48 -07:00
David Keeler
ad7bcb2bf7
bug 700693 - OCSP stapling testing r=bsmith
2013-06-20 11:41:41 -07:00
Robert Strong
0d3de8ab37
3. tests patch - Bug 843497 - Update check says 'up to date' for out of date versions on unsupported OS versions. r=bbondy
2013-06-21 18:11:25 -07:00
Robert Strong
178830d7fb
1. main patch - Bug 843497 - Update check says 'up to date' for out of date versions on unsupported OS versions. r=bbondy
2013-06-21 18:10:58 -07:00
Ryan VanderMeulen
5e00b193a7
Merge m-c to inbound.
2013-06-20 20:12:31 -04:00
Ryan VanderMeulen
211dccca9c
Backed out changesets 448ba56d9ba4 and 8cea4b4646ef (bug 700693) for intermittent failures.
2013-06-20 19:50:13 -04:00
Nick Alexander
e797d0b7b5
Bug 874132 - Second reland Part 3: Replace uses of apkbuilder with zip and custom debug signing tool. r=jmaher,mfinkle
...
This incorporates follow-ups including: rename the debug key; check if
key alias exists rather than just testing for keystore existence; set
$(AIDL).
Renaming the debug key works around an un-confirmed JDK bug in
jarsigner, where '-debug' and 'debug' compare the same.
2013-06-20 11:50:28 -07:00
David Keeler
bd2a95a26c
bug 700693 - OCSP stapling testing r=bsmith
2013-06-20 11:41:41 -07:00
Joey Armstrong
90f5105a37
bug 880246: move EXTRA_PP_COMPONENTS to mozbuild (cleanup). r=mshal
2013-06-20 15:59:59 -04:00
Brian O'Keefe
5f8b5163e8
Bug 875934 - Move LIBRARY_NAME to moz.build (batch #1 ); r=mshal
...
--HG--
extra : rebase_source : 385d3fd65475ffc18ee44ae088753649470e214b
2013-06-17 15:21:01 -04:00
Robert Strong
150daca54e
Tests - Bug 882007 - Restart notification is not shown when staging is enabled. r=bbondy
...
--HG--
rename : toolkit/mozapps/update/test/chrome/test_0095_restartNotification.xul => toolkit/mozapps/update/test/chrome/test_0093_restartNotification.xul
rename : toolkit/mozapps/update/test/chrome/test_0096_restartNotification_remote.xul => toolkit/mozapps/update/test/chrome/test_0094_restartNotification_remote.xul
rename : toolkit/mozapps/update/test/chrome/test_0097_restartNotification_remoteInvalidNumber.xul => toolkit/mozapps/update/test/chrome/test_0095_restartNotification_remoteInvalidNumber.xul
rename : toolkit/mozapps/update/test/chrome/test_0093_stagedBackground.xul => toolkit/mozapps/update/test/chrome/test_0096_restartNotification_stagedBackground.xul
rename : toolkit/mozapps/update/test/chrome/test_0094_stagedServiceBackground.xul => toolkit/mozapps/update/test/chrome/test_0097_restartNotification_stagedServiceBackground.xul
2013-06-19 18:05:34 -07:00
Robert Strong
cbabf01a32
Main patch - Bug 882007 - Restart notification is not shown when staging is enabled. r=bbondy
2013-06-19 18:05:04 -07:00
Ryan VanderMeulen
342c4d256a
Backed out changeset 833ca9a17792 (bug 874132) for Android bustage on a CLOSED TREE.
2013-06-19 20:32:47 -04:00
Nick Alexander
c881e10c70
Bug 874132 - Reland Part 3: Replace uses of apkbuilder with zip and custom debug signing tool. r=jmaher,mfinkle
...
This incorporates follow-ups including: rename the debug key; check if
key alias exists rather than just testing for keystore existence; set
$(AIDL).
Renaming the debug key works around an un-confirmed JDK bug in
jarsigner, where '-debug' and 'debug' compare the same.
2013-06-19 17:05:14 -07:00
Nick Alexander
966d17128b
Backed out changeset 3a4c1a113154 (Bug 874132) for jarsigner "Please specify alias name" errors.
2013-06-19 08:21:15 -07:00
Benjamin Smedberg
8c67029c44
Bug 882339 - Cache the blocklist state on plugin tags to avoid querying the blocklist service constantly, r=johns
2013-06-19 11:07:28 -04:00
Nick Alexander
5852bb6287
Bug 874132 - Part 3: Replace uses of apkbuilder with zip and custom debug signing tool. r=jmaher
...
--HG--
extra : rebase_source : cf6601c6591921397f96fd1011db43de962ee8ed
2013-06-18 09:25:16 -07:00
Masatoshi Kimura
92f12ba5ea
Bug 883855 - Add "delete" value support to AddHandlerValues and AddDDEHandlerValues. r=bbondy
2013-06-18 23:02:53 +09:00
Masatoshi Kimura
0ca1460845
Bug 882624 - Update comments. r=bbondy
2013-06-18 20:37:28 +09:00
Masatoshi Kimura
3d9f7a3b04
Bug 882624 - Remove "URL Protocol" from FirefoxURL key. r=bbondy
2013-06-17 23:08:55 +09:00
Nils Maier
c0bfe1e4ba
Bug 846019 - Part 1: amIAddonManager: Map URIs to AddonIDs. r=bmcbride
2013-06-14 22:48:06 -04:00
Joey Armstrong
ad3592a2c7
bug 880246: move EXTRA_PP_COMPONENTS to mozbuild (file batch #1 ) r=mshal
2013-06-14 14:07:19 -04:00
Nick Alexander
684cc56c32
Bug 873569 - Part 2: Move Gecko .so libraries into assets/ directory of Android APK. r=glandium
2013-06-12 13:24:30 -07:00
Brian R. Bondy
6cf372367b
Bug 874323 - Continue to launch callback when allow set foreground call fails. r=jimm
2013-06-12 10:31:10 -04:00
Brian R. Bondy
6995f05641
Bug 874323 - wait longer for app to close for Metro since it launches updater directly. r=rstrong
2013-06-12 10:31:10 -04:00
Brian R. Bondy
aabcdd7c84
Bug 874323 - Start updater manually for Metro to apply update. r=rstrong
2013-06-12 10:31:10 -04:00
Brian R. Bondy
873e818174
Bug 866229 - Metro pref telemetry. r=rstrong
2013-06-12 10:31:10 -04:00
Brian R. Bondy
865f958ea8
Bug 866229 - Don't abort when app.update.silent is true and update.showPrompt is true on Metro. r=rstrong
2013-06-12 10:31:10 -04:00
Brian R. Bondy
0fef7c43b1
Bug 866229 - Use metro enabled pref. r=rstrong
2013-06-12 10:31:09 -04:00
Benjamin Smedberg
167df5915e
Bug 875454 - Rework handling of per-site plugin permissions in objectloadingcontent such that users can disable or enable plugins per-site no matter what their "global" permission is (currently only plugins marked click-to-activate globally honor per-site overrides). Also change the pageInfo UI such that "use default" is separate from the explicit click-to-play setting. r=jschoenick/jaws
...
--HG--
extra : rebase_source : e5bfba45eaa5619d695c484573b90303cc113181
2013-06-11 10:58:43 -04:00
Benjamin Smedberg
21b1ee6a24
Bug 880675 - Remove the writable nsIPluginTag.blocklisted property, which is a poorly-constructed cache of the blocklist data, r=jschoenick r=unfocused
...
--HG--
extra : rebase_source : 04fd347af86d9bb47493ca37455008dedcc570f4
2013-06-11 10:58:42 -04:00
Joey Armstrong
d47bba4871
bug 870370: move EXTRA_COMPONENTS to moz.build (file batch #2 ). r=mshal
2013-06-10 11:19:28 -04:00
Martin Stransky
9386e8c35b
Bug 877626 - Port GTK2 to GTK3 - build config - xpcom, toolkit, accessible, xulrunner dirs. r=ted, r=karlt
2013-06-10 08:36:26 -04:00
Joey Armstrong
7ebe282a64
bug 870407: move CMMSRCS to moz.build (file batch #1 ). r=mshal
2013-06-07 11:43:39 -04:00
Jared Wein
89a0703c4c
Bug 879941 - Fix typo in LightweightThemeManager.jsm. r=Unfocused
...
--HG--
extra : rebase_source : b1c77d825c620887b7b9bcbdb3e32150dd99f200
2013-06-06 19:10:46 -04:00
Robert Strong
5442839d56
2. Move gProcessObserver and gTimerCallback to head_update.js.in - Bug 879612 - Move app update common xpcshell test code into head_update.js.in. r=bbondy
2013-06-05 20:25:42 -07:00
Robert Strong
d210e68f38
1. Move adjustPathsOnWindows to head_update.js.in - Bug 879612 - Move app update common xpcshell test code into head_update.js.in. r=bbondy
2013-06-05 20:25:06 -07:00
Robert Strong
12f062cdb5
Bug 879467 - Tune 7zip compression parameters. r=bbondy
2013-06-05 00:33:38 -07:00
Robert Strong
9741897645
Bug 811557. r=bbondy
2013-06-05 00:33:26 -07:00
Johnny Stenback
387d5e247d
Bug 855613. Stop exposing nsIDOMMimeType in nsIPluginTag. r=joshmoz@gmail.com
2013-03-27 22:19:41 -07:00
Sachin Hosmani
5c1f825b78
Bug 734862 - Replace "Infinite GB/s" with a more readable localized string. r=mak
2013-05-22 18:53:11 +05:30
Richard Newman
2a6ad33ade
Bug 877061 - PluginProvider can't find Home plugins on Android. r=Mossop
2013-05-29 14:18:41 -07:00
Mike Shal
994cfe0b6b
Bug 864774 - Part 2: Move CPPSRCS to moz.build as CPP_SOURCES; r=joey CLOSED TREE
...
From 9e0ba7f425143f545eb6c4b26a9a96b5ade4d8e9 Mon Sep 17 00:00:00 2001
2013-04-23 17:54:15 -04:00
Sachin Hosmani
b7bd3a96b8
Bug 590347 - Expose the softblock notification in preference to the incompatible notification when compatibility checking is disabled. r=Mossop
2013-05-24 09:37:17 -07:00
Phil Ringnalda
4c139eeb06
Merge m-c to fx-team
2013-05-23 21:25:59 -07:00
Sachin Hosmani
7d3a2b1bd2
Bug 737446 -'null' is shown in installation popup instead of name obtained from AMO metadata. r=Unfocused
2013-05-22 14:49:25 +05:30
Brian R. Bondy
4cffeb28f5
Bug 867056. r=rstrong
2013-05-23 13:26:44 -04:00
Mike Hommey
3d4714fe7f
Bug 874783 - Fix l10n builds after bug 848764. r=ted
2013-05-23 07:27:20 +02:00
Brian R. Bondy
c8186a880d
Bug 794937 - Updater callback should launch Metro Firefox when updating from Metro Firefox. r=rstrong
2013-05-22 10:16:56 -04:00
Brian R. Bondy
25cbd9c470
Bug 794937 - Make updates work from the Metro front end, add handling for 1 instance handling updates. r=rstrong
2013-05-22 10:16:53 -04:00
Nick Alexander
3e6da17ab5
Bug 863445 - Part 3: Make build/mobile/robocop/Makefile.in produce robocop-debug-signed.apk. r=jmaher
...
Also makes the developer-facing `make mochitest-robocop` run
robocop-debug-signed.apk, and deprecates `make
mochitest-robotium` (since we name this suite robocop on TBPL).
2013-05-20 11:39:50 -07:00
Nick Alexander
6ed9eb9fc2
Bug 863445 - Part 1: Make mobile/android/base/Makefile.in generate fennec_ids.txt. r=jmaher
...
Building mobile/android/base will now generate
$(DEPTH)/mobile/android/base/fennec_ids.txt.
--HG--
rename : build/mobile/robocop/parse_ids.py => mobile/android/base/fennec-ids-generator.py
2013-05-20 11:39:49 -07:00
Gregory Szorc
14c4938355
Bug 873629 - Remove 129 empty Makefile.in files; r=ted
2013-05-17 16:20:11 -07:00
Gregory Szorc
e0fa1f0276
Bug 863069 - Part 4: Reorder lists to be alphabetical; r=ted
...
--HG--
extra : rebase_source : 87ed9d862bc32824d518438b0be74b47a77c198a
2013-05-16 15:37:18 -07:00
Ryan VanderMeulen
94deccd7c8
Backed out changeset 94978dab7186 (bug 863069) for build bustage.
...
CLOSED TREE
2013-05-16 13:22:02 -04:00
Gregory Szorc
714eb479c3
Bug 863069 - Part 4: More sorting of existing lists; r=ted
2013-05-16 09:53:27 -07:00
Ryan VanderMeulen
f9b7785a5b
Merge inbound to m-c.
2013-05-15 21:14:58 -04:00
Brian R. Bondy
41b3b11773
Bug 572162 - Changes to tests for update root hash changes. r=rstrong
2013-05-15 10:58:09 -07:00
Brian R. Bondy
1b7f9e7b12
Bug 572162 - Cleanup new update directory and obsolete old after updates and installs. r=rstrong
2013-05-15 10:58:09 -07:00
Brian R. Bondy
69d5d201c7
Bug 572162 - Update root dir migration xpcshell tests. r=rstrong
2013-05-15 10:58:09 -07:00
Brian R. Bondy
ed108df979
Bug 572162 - Migrate update files to new update directory after updates. r=rstrong
2013-05-15 10:58:09 -07:00
Joey Armstrong
2dbf79e9a4
bug 869143: phase2 cleanup for XPCSHELL_TEST conversion. r=mshal
2013-05-13 16:24:07 -04:00
Ed Morley
580f20e03b
Backed out changeset 2d5c2f191920 (bug 863445) for breaking Android Nightlies
...
--HG--
rename : mobile/android/base/fennec-ids-generator.py => build/mobile/robocop/parse_ids.py
2013-05-13 12:31:39 +01:00
Ed Morley
03cf49557a
Backed out changeset dac51812454a (bug 863445)
2013-05-13 12:31:10 +01:00
Nick Alexander
c845a84338
Bug 863445 - Part 3: Make build/mobile/robocop/Makefile.in produce robocop-debug-signed.apk. r=jmaher
...
Also makes the developer-facing `make mochitest-robocop` run
robocop-debug-signed.apk, and deprecates `make
mochitest-robotium` (since we name this suite robocop on TBPL).
2013-05-11 16:53:49 -07:00
Nick Alexander
07abe0b862
Bug 863445 - Part 1: Make mobile/android/base/Makefile.in generate $(DIST)/fennec_ids.txt. r=jmaher
...
--HG--
rename : build/mobile/robocop/parse_ids.py => mobile/android/base/fennec-ids-generator.py
2013-05-11 16:53:48 -07:00
Nick Alexander
403b679bb3
Backed out e7739a472f09, 3fd142236a0f, and 382ec69cdfb1 (Bug 863445) for Android rc1 and rc2 failures on a CLOSED TREE. r=me
...
--HG--
rename : mobile/android/base/fennec-ids-generator.py => build/mobile/robocop/parse_ids.py
2013-05-10 21:38:52 -07:00
Nick Alexander
400a73884d
Bug 863445 - Part 3: Make build/mobile/robocop/Makefile.in produce robocop-debug-signed.apk. r=jmaher
...
Also makes the developer-facing `make mochitest-robocop` run
robocop-debug-signed.apk, and deprecates `make
mochitest-robotium` (since we name this suite robocop on TBPL).
2013-05-10 18:39:00 -07:00
Nick Alexander
51c1111fa4
Bug 863445 - Part 1: Make mobile/android/base/Makefile.in generate $(DIST)/fennec_ids.txt. r=jmaher
...
--HG--
rename : build/mobile/robocop/parse_ids.py => mobile/android/base/fennec-ids-generator.py
2013-05-10 18:39:00 -07:00
Brian O'Keefe
2186ab5dce
Bug 862986 - Part 2a: Migrate PROGRAM from Makefile.in to moz.build. r=gps
2013-05-01 14:05:40 -04:00
Brian O'Keefe
748220892f
Bug 862986 - Part 1a: Move MOZ_CHILD_PROCESS_NAME and MOZ_CHILD_PROCESS_BUNDLE to configure.in, remove ipc/app/def.mk. r=glandium
2013-05-09 15:55:28 -04:00
Wes Johnston
7dad19c9d5
Bug 798358 - Use learnmore link for addons on about:home. r=mfinkle
2013-01-10 11:00:59 -08:00
Amod Narvekar
b82843c114
Bug 224315 - Poor grammar in 'is a:' message on unknown content type window. r=jaws
2013-05-08 15:05:11 -04:00
Phil Ringnalda
33c95fc04c
Back out f2ac70bee1e0 (bug 798358) until it tells us what jsonobj it is talking about
...
CLOSED TREE
2013-05-07 14:39:59 -07:00
Wes Johnston
ef0d8b6a29
Bug 798358 - Use learnmore link for addons on about:home. r=mfinkle
2013-01-10 11:00:59 -08:00
Henrik Skupin
581dfa87e5
Bug 869050 - Update anonid and classname for tristate-menulist. r=unfocused
...
--HG--
extra : rebase_source : 5cb5b78ead554e979a74e7e4d3984103a278def9
2013-05-07 09:35:23 +02:00
Ryan VanderMeulen
dd7e876189
Merge m-c to inbound.
2013-05-06 08:29:37 -04:00
Phil Ringnalda
f8f51bfc19
Merge m-c to fx-team
2013-05-05 12:28:41 -07:00
Phil Ringnalda
26df73b22c
Merge m-c to fx-team
2013-05-03 21:37:03 -07:00
Ritesh Modi
2a70c17194
Bug 866636 - AddonUpdateChecker bypasses it cache, but doesn't inhibit writing to it. r=Unfocused
2013-05-03 16:24:51 +12:00
Matthew Noorenberghe
0c2ac36996
Bug 866564 - Don't cache Lightweight Theme update checks. r=Unfocused
2013-04-30 17:31:59 -07:00
Ryan VanderMeulen
9e80ef1555
Backed out changesets c7937fb5f4bb and cf8db9b6bd61 (bug 862986) for bustage.
...
CLOSED TREE
2013-04-30 21:09:41 -04:00
Brian O'Keefe
6cb4a9b9be
Bug 862986 - Part 2: Migrate PROGRAM from Makefile.in to moz.build. r=gps
2013-04-30 20:46:10 -04:00
Brian O'Keefe
1fe33f154d
Bug 862986 - Part 1a: Move MOZ_CHILD_PROCESS_NAME and MOZ_CHILD_PROCESS_BUNDLE to configure.in, remove ipc/app/def.mk. r=glandium
2013-04-30 20:45:39 -04:00
Christian Sonne ext:(%2C%20Justin%20Dolske%20%3Cdolske%40mozilla.com%3E)
d1969f91c7
Bug 839206 - Replace plugin installation notification bar with door hanger r=dolske
...
--HG--
extra : rebase_source : 20a6d7a32805772e9435ec874c049481a863a749
2013-05-03 13:44:12 -07:00
Ryan VanderMeulen
d1a59f8eab
Backed out changesets 64c7ba1d3d04 and 7e9d5bb4a9af (bug 862986) for test failures.
2013-04-30 10:08:38 -04:00
Brian O'Keefe
43eddbd12b
Bug 862986 - Part 2: Migrate PROGRAM from Makefile.in to moz.build. r=gps
2013-04-30 09:08:31 -04:00
Brian O'Keefe
0099cfc905
Bug 862986 - Part 1a: Move MOZ_CHILD_PROCESS_NAME and MOZ_CHILD_PROCESS_BUNDLE to configure.in, remove ipc/app/def.mk. r=glandium
2013-04-30 09:05:17 -04:00
Neil Rashbrook
4d19f23bce
Bug 868851 Click-to-play controls should act like normal menulists r=Unfocused
...
--HG--
extra : rebase_source : 5fc1802ac9140cb5fd0cf4dc31144dad758eef5e
2013-05-06 10:36:16 +01:00
Joey Armstrong
8e99512c32
bug 844655: Port XPCSHELL_TESTS to moz.build as XPCSHELL_TESTS_MANIFESTS
2013-04-29 14:49:00 -04:00
Brian R. Bondy
864f477636
Bug 715746 - Test fixes for allowing updates to be applied on Windows while the browser is open. r=rstrong
...
--HG--
rename : toolkit/mozapps/update/test/unit/test_0160_appInUse_xp_unix_complete.js => toolkit/mozapps/update/test/unit/test_0160_appInUse_complete.js
rename : toolkit/mozapps/update/test_svc/unit/test_0160_appInUse_xp_win_complete_svc.js => toolkit/mozapps/update/test_svc/unit/test_0160_appInUse_complete_svc.js
2013-04-28 18:27:00 -04:00
Brian R. Bondy
30d0f0d495
Bug 715746 - Allow callback to be renamed and update to continue if in use. r=rstrong
2013-04-28 18:26:56 -04:00
Georg Fritzsche
04a3f03129
Bug 752516 - Give pluginProblemBinding the top-most z-index. r=bsmedberg,jaws
2013-04-22 13:47:37 +02:00
Ted Mielczarek
a83eeea807
Bug 863715 - Allow uploading full crashreporter symbol package via mozconfig option. r=glandium
2013-04-25 15:16:24 -04:00
Ryan VanderMeulen
713f8e57eb
Merge m-c to fx-team.
2013-04-25 08:41:24 -04:00
Tim Taubert
e662ba5969
Backed out changeset 95067eec6bde (bug 815120) for mochitest-bc failures
2013-04-25 09:42:54 +02:00
Sachin Hosmani
46f9674a78
Bug 842780 - about:newaddon doesn't restrict size of the add-on's icon. r=Unfocused
2013-04-23 12:04:30 +05:30
Martin Stransky
84acbacd79
Bug 815120 - xpinstall.enabled=false still allows to install xpi via. addon search, r=bmcbride
2013-04-24 17:47:26 +12:00
Sachin Hosmani
212f47a241
Bug 851242 - Opening the Add-ons Manager via the -chrome command line switch doesn't load add-on list correctly. r=Unfocused
2013-04-21 14:09:32 +05:30
Alexandre Poirot
adf4c58232
Bug 857073 - Simplify ChromeUtils usages. r=jmaher
2013-04-16 16:46:47 -04:00
Mike Shal
77cdb6567d
Bug 846634 - Part 2: Move EXPORTS to moz.build; r=joey
2013-04-16 15:24:43 -04:00
David Keeler
13412b2b0b
bug 549697 - add click-to-play plugin UI to the addon manager r=unfocused r=jaws
...
--HG--
rename : browser/base/content/test/test_bug787619.html => browser/base/content/test/browser_bug787619.js
rename : browser/base/content/test/test_bug787619.html => browser/base/content/test/plugin_bug787619.html
2013-04-23 16:21:22 -07:00
Mike Hommey
c11fc22759
Bug 872439 - Fix GRE path used for startup cache precompilation with --with-libxul-sdk. r=gps
2013-05-15 19:23:03 +02:00
Ekanan Ketunuti
620410f94c
Bug 828116 - Move modules in toolkit/content and toolkit/mozapps/shared to toolkit/modules. r=Mossop
...
--HG--
rename : toolkit/mozapps/shared/CertUtils.jsm => toolkit/modules/CertUtils.jsm
rename : toolkit/content/DeferredTask.jsm => toolkit/modules/DeferredTask.jsm
rename : toolkit/content/Deprecated.jsm => toolkit/modules/Deprecated.jsm
rename : toolkit/content/Dict.jsm => toolkit/modules/Dict.jsm
rename : toolkit/mozapps/shared/FileUtils.jsm => toolkit/modules/FileUtils.jsm
rename : toolkit/content/Geometry.jsm => toolkit/modules/Geometry.jsm
rename : toolkit/content/InlineSpellChecker.jsm => toolkit/modules/InlineSpellChecker.jsm
rename : toolkit/content/LightweightThemeConsumer.jsm => toolkit/modules/LightweightThemeConsumer.jsm
rename : toolkit/content/PageMenu.jsm => toolkit/modules/PageMenu.jsm
rename : toolkit/content/PopupNotifications.jsm => toolkit/modules/PopupNotifications.jsm
rename : toolkit/content/PrivateBrowsingUtils.jsm => toolkit/modules/PrivateBrowsingUtils.jsm
rename : toolkit/content/PropertyListUtils.jsm => toolkit/modules/PropertyListUtils.jsm
rename : toolkit/content/Services.jsm => toolkit/modules/Services.jsm
rename : toolkit/content/Task.jsm => toolkit/modules/Task.jsm
rename : toolkit/content/Troubleshoot.jsm => toolkit/modules/Troubleshoot.jsm
rename : toolkit/content/UpdateChannel.jsm => toolkit/modules/UpdateChannel.jsm
rename : toolkit/content/WindowDraggingUtils.jsm => toolkit/modules/WindowDraggingUtils.jsm
rename : toolkit/content/debug.js => toolkit/modules/debug.js
rename : toolkit/content/tests/browser/browser_DeferredTask.js => toolkit/modules/tests/browser/browser_DeferredTask.js
rename : toolkit/content/tests/browser/browser_Deprecated.js => toolkit/modules/tests/browser/browser_Deprecated.js
rename : toolkit/content/tests/browser/browser_Geometry.js => toolkit/modules/tests/browser/browser_Geometry.js
rename : toolkit/content/tests/browser/browser_InlineSpellChecker.js => toolkit/modules/tests/browser/browser_InlineSpellChecker.js
rename : toolkit/content/tests/browser/browser_Services.js => toolkit/modules/tests/browser/browser_Services.js
rename : toolkit/content/tests/browser/browser_Troubleshoot.js => toolkit/modules/tests/browser/browser_Troubleshoot.js
rename : toolkit/mozapps/shared/test/chrome/Makefile.in => toolkit/modules/tests/chrome/Makefile.in
rename : toolkit/mozapps/shared/test/chrome/moz.build => toolkit/modules/tests/chrome/moz.build
rename : toolkit/mozapps/shared/test/chrome/test_bug544442_checkCert.xul => toolkit/modules/tests/chrome/test_bug544442_checkCert.xul
rename : toolkit/content/tests/unit/propertyLists/bug710259_propertyListBinary.plist => toolkit/modules/tests/xpcshell/propertyLists/bug710259_propertyListBinary.plist
rename : toolkit/content/tests/unit/propertyLists/bug710259_propertyListXML.plist => toolkit/modules/tests/xpcshell/propertyLists/bug710259_propertyListXML.plist
rename : toolkit/mozapps/shared/test/unit/test_FileUtils.js => toolkit/modules/tests/xpcshell/test_FileUtils.js
rename : toolkit/content/tests/unit/test_dict.js => toolkit/modules/tests/xpcshell/test_dict.js
rename : toolkit/content/tests/unit/test_propertyListsUtils.js => toolkit/modules/tests/xpcshell/test_propertyListsUtils.js
rename : toolkit/mozapps/shared/test/unit/test_readCertPrefs.js => toolkit/modules/tests/xpcshell/test_readCertPrefs.js
rename : toolkit/content/tests/unit/test_task.js => toolkit/modules/tests/xpcshell/test_task.js
2013-05-14 14:37:18 -07:00
Mike Hommey
17bde9bad3
Bug 844016 - Move webapprt locale files. r=Pike
...
--HG--
rename : browser/locales/en-US/webapp-uninstaller/webapp-uninstaller.properties => webapprt/locales/en-US/webapp-uninstaller/webapp-uninstaller.properties
rename : browser/locales/en-US/webapprt/webapp.dtd => webapprt/locales/en-US/webapprt/webapp.dtd
rename : browser/locales/en-US/webapprt/webapp.properties => webapprt/locales/en-US/webapprt/webapp.properties
2013-04-12 10:23:10 +02:00
Mike Hommey
59a9121097
Bug 848385 - Avoid recompressing a szip, and (de)compress in-place (but still with a temporary file). r=nfroyd,khuey
2013-04-11 09:37:44 +02:00
Mike Hommey
401f1f5af0
Bug 857161 - Add aggressive flags to szip invocation on build slaves. r=ted
2013-04-11 09:36:27 +02:00
Mike Hommey
ec9e800023
Bug 857151 - Szip all libraries instead of libxul.so only. r=ted
2013-04-02 18:42:56 +02:00
Ryan VanderMeulen
3f87e3f1b8
Merge m-c to inbound.
2013-04-10 14:39:56 -04:00
Ryan VanderMeulen
a80af7452e
Merge m-c to fx-team.
2013-04-10 11:01:28 -04:00
Martin Stransky
4befc67080
Bug 601442 - Support the extensions.getAddons.showPane pref again in the Add-ons Manager UI. r=bmcbride
2013-04-10 14:13:13 +12:00
Mike Hommey
0deb6d8a57
Bug 857147 - Fixup Android DIST_FILES after bug 648407 and bug 852950. r=ted
2013-04-08 08:33:38 +02:00
David Keeler
8cef92685a
bug 854467 - fix nsIPluginTag enabled state API r=bsmedberg r=unfocused
2013-03-27 14:06:43 -07:00
Tim Taubert
81fec162fe
merge m-c to fx-team
2013-04-03 12:30:29 +02:00
Alexandre Poirot
59f5733339
Bug 854937: Fix reason code for bootstrap addon dropped in profile extensions folder. r=Mossop,Unfocused
2013-04-03 00:29:37 +13:00
Quentin Headen
7ace361fc4
Bug 802454 - Log messages for 404 errors when checking for add-on updates should include the URL. r=Unfocused
2013-04-01 22:15:40 +13:00
Blair McBride
5102e7f46a
Bug 806271 - Introduce new settings type, OPTIONS_TYPE_INLINE_INFO. r=Mossop
...
--HG--
rename : toolkit/mozapps/extensions/test/browser/addons/browser_inlinesettings1/bootstrap.js => toolkit/mozapps/extensions/test/browser/addons/browser_inlinesettings1_info/bootstrap.js
rename : toolkit/mozapps/extensions/test/browser/addons/browser_inlinesettings1/install.rdf => toolkit/mozapps/extensions/test/browser/addons/browser_inlinesettings1_info/install.rdf
rename : toolkit/mozapps/extensions/test/browser/addons/browser_inlinesettings1/options.xul => toolkit/mozapps/extensions/test/browser/addons/browser_inlinesettings1_info/options.xul
rename : toolkit/mozapps/extensions/test/browser/browser_inlinesettings.js => toolkit/mozapps/extensions/test/browser/browser_inlinesettings_info.js
2013-04-01 22:07:23 +13:00
Blair McBride
43a322e15d
Bug 847867 - Ensure extensions.bootstrappedAddons is updated to reflect live changes. r=Mossop
2013-04-01 21:58:16 +13:00
Ryan VanderMeulen
3a0a389c99
Merge fx-team to m-c.
2013-03-27 22:22:20 -04:00
Felipe Gomes
7a73f5be07
Bug 854299 - Part 5. Make nsHelperAppDlg.promptForSaveToFileAsync actually async. r=bz
2013-04-01 03:16:13 -03:00
Felipe Gomes
a4bcc77d2f
Bug 854299 - Part 2. Update DownloadLastDir.getFile. r=adw
2013-04-01 03:08:49 -03:00
Felipe Gomes
ed5d5b9067
Bug 854299 - Part 1. Split nsExternalAppHandler::SaveToDisk in two parts to make second part async. r=bz sr=roc
2013-04-01 03:07:13 -03:00
Felipe Gomes
586824cf24
Bug 850210 - Part 3. Update DownloadLastDir usage of removePrefsByName to nsIContentPrefService2. r=adw
2013-04-01 02:59:17 -03:00
Panos Astithas
3ae77996a4
Bug 855223 - Packaging fails when using a symlink format with: TypeError: fatal() takes exactly 2 arguments (3 given); r=glandium
2013-03-27 13:10:22 +02:00
Geoff Lankow
6f1208ca38
Bug 849614 - Give both version numbers to bootstrap methods when an addon is down/upgraded; r=Unfocused
2013-03-23 15:15:12 +13:00
Edwin Flores
f04dcb6e91
Bug 846465 - Fix OMX plugin crash on HTC One X r=doublec
2013-03-22 15:24:47 +13:00
Makoto Kato
19eeee7a05
Bug 855173 - jsshell package needs nss3.dll due to MOZ_FOLD_LIBS. r=glandium
2013-03-27 16:51:43 +09:00
Boris Zbarsky
425b25741d
Bug 792215. Convert quickstubs to using JSNative getters and setters. r=peterv
2012-09-25 14:44:40 -04:00
Kyle Machulis
5aa83c3e11
Bug 855465 - Add emacs python mode comments to moz.build files; r=gps
2013-04-01 11:36:59 -07:00
Ryan VanderMeulen
dcda86fbdf
Backed out changeset 9983874bfa63 (bug 854467) for bustage on a CLOSED TREE.
2013-04-09 13:45:39 -04:00
David Keeler
c5435bfca8
bug 854467 - fix nsIPluginTag enabled state API r=bsmedberg r=unfocused
2013-03-27 14:06:43 -07:00
Mike Hommey
591663955d
Bug 855824 - Get rid of the lib.id file on Android. r=blassey
2013-04-09 14:05:07 +02:00
Stephen Kraemer
7b93b707c5
Bug 836078 - Replace all gcc __GNUC__ version checks with MOZ_GCC_VERSION_AT_LEAST macro. r=dvander
2013-05-01 15:45:05 -04:00
Mike Shal
9680b82df6
Bug 844654 - Part 2: Move MODULE to moz.build; rs=gps
2013-03-19 11:47:00 -07:00
Gregory Szorc
2288b28e43
Bug 844635 - Part 3: Remove empty Makefile.in files; r=glandium
2013-03-17 18:01:25 -07:00
Mike Hommey
e5f86190e5
Bug 648407 - Allow to fold NSPR, NSS and SQLite libraries all together. r=ted
2013-03-17 07:53:39 +01:00
Gregory Szorc
8b4f575df1
Bug 818246 - Part 5: Move XPIDLSRCS into moz.build (manual); r=glandium
2013-03-12 10:20:41 -07:00
Gregory Szorc
7bb3ee056b
Bug 818246 - Part 4: Move XPIDLSRCS into moz.build (auto); rs=glandium
...
This is the result of running
|mach mozbuild-migrate --list XPIDLSRCS SDK_XPIDLSRCS XPIDL_SOURCES| and
reverting xpcom/sample/*.
2013-03-12 10:17:46 -07:00
Gabriele Svelto
60f2d3b732
Bug 689256 - Record invalid PROCESS_CREATION timestamps and adjust tests to cope with them. r=glandium
2013-03-08 12:37:16 +01:00
Brian Smith
1d74004842
bug 750421 - remove unnecessary nsIBadCertListener2 and nsISSLErrorListener implementations r=mayhemer r=mounir r=dolske
2013-03-06 11:25:03 -08:00
Gavin Sharp
7071d66f6a
Bug 831236: remove mobile/xul, r=axel,mfinkle,gps,glandium
...
--HG--
extra : rebase_source : be789eac5e8e769a54e6c0c4126065c8b5a5192e
2013-03-06 23:43:44 -08:00
Ryan VanderMeulen
babdb27448
Backed out changeset f856bcb5097f (bug 689256) for xpcshell orange on a CLOSED TREE.
2013-03-06 14:37:34 -05:00
Gabriele Svelto
dc7707f7c5
Bug 689256 - Record invalid PROCESS_CREATION timestamps and adjust tests to cope with them. r=glandium
2013-03-05 18:24:21 +01:00
Dão Gottwald
38200904bb
Bug 548763 followup, move comment to the right place
2013-03-06 10:05:11 +01:00
Mike Hommey
4d7f38e8cb
Bug 846740 - Treat chrome searchplugins as non-chrome when doing l10n-repack. r=gps
2013-03-06 07:28:41 +01:00
Mike Hommey
9266f3c3e8
Bug 846740 - Move most l10n-repack code under mozpack.packager, refactor it, and add a unit test. r=gps
...
--HG--
rename : toolkit/mozapps/installer/l10n-repack.py => python/mozbuild/mozpack/packager/l10n.py
2013-03-06 07:26:32 +01:00
Alexander J. Vincent
7d4c27a2f4
Bug 847382: Fix XULRunner SDK builds. r=glandium
2013-03-04 23:09:14 -08:00
Cykesiopka
e055b046c8
Bug 339631 - Remove useless |const RDF_NS| in <pluginInstallerDatasource.js>. r=Mossop
2013-03-04 20:15:38 -05:00
Mike Hommey
894c949d86
Bug 842327 - Move libomxplugin* at the root of the apk. r=doublec,r=khuey
2013-03-04 19:34:03 +01:00
Ryan VanderMeulen
be2cdda9f7
Merge m-c to inbound.
2013-03-04 10:24:41 -05:00
Mike Hommey
9376d7ad68
Bug 812105 - Strip all files that can be stripped in the SDK. r=ted DONTBUILD as NPOTB
2013-03-04 09:23:09 +01:00
Tom Schuster
1ee9920178
Bug 661961 - change about:plugins to add the path for every extension. r=bsmedberg
2013-02-28 13:46:42 +01:00
Dave Vasilevsky
c3964b9858
Bug 548763 - Show download progress in OS X app dock icon. r=dao r=josh
...
--HG--
rename : widget/tests/taskbar_progress.xul => widget/tests/test_taskbar_progress.xul
2013-03-03 05:58:00 -05:00
Brian R. Bondy
eb118b0c53
Bug 843770. r=rstrong
2013-02-28 16:12:51 -05:00
Brian R. Bondy
f6a3b16026
bug 830134. r=rstrong
2013-02-28 10:05:45 -05:00
Ms2ger
3813557cac
Merge m-i to b-s.
2013-02-28 14:46:10 +01:00
Gregory Szorc
f0b7e3972c
Merge mozilla-central into build-system
...
There were merges in configure.in and some Makefile.in. None had any
conflicts. I spot verified the Makefile.in changes and confirmed that
the changes did not touch any DIRS* variables.
2013-02-27 10:03:52 -08:00
Ms2ger
cd9c6150fe
Merge m-c to b-s.
2013-02-26 19:09:25 +01:00
Ed Morley
53600c9d44
Merge mozilla-central to mozilla-inbound
2013-02-26 10:45:52 +00:00
Mike Hommey
fd2a3d3551
Bug 844785 - Fix xulrunner mac builds. r=ted
2013-02-26 08:13:30 +01:00
Gregory Szorc
14545664e3
Bug 784841 - Part 18θ: Convert /toolkit f=Mossop, Ms2ger; rs=ted
2013-02-25 13:19:09 -08:00
Gregory Szorc
b57b13255c
Bug 784841 - Part 17: Handle unicode during packaging; r=glandium
2013-02-25 12:47:17 -08:00
Shane Caraveo
6b1411323d
Bug 755126 add social services management to about:addons, r=felipe
2013-02-26 14:50:24 -08:00
Dave Townsend
02a5c54a71
Bug 824022: Forcibly timeout xpcshell tests that run too long. r=Unfocused
2013-02-23 21:55:23 -08:00
L. David Baron
a144cc1c82
Bug 404077: Use navigator.platform.startsWith rather than navigator.platform.indexOf, at Jesse's suggestion.
2013-02-26 22:23:08 -08:00
Marshall Culpepper
d7cf184143
Bug 833708: Correctly set the active update's errorCode when there isn't enough space in Gonk. r=dhylands
2013-02-25 21:11:14 -06:00
L. David Baron
57d19fbb86
Bug 404077: Annotate known assertions in mochitests.
2013-02-25 18:39:21 -08:00
Shih-Chiang Chien
0123505cb7
Bug 835260 - Need B2G version number for composing update URL. r=marshall_law
2013-02-25 20:44:12 -05:00
Gavin Sharp
088d7ae9b5
Remove some unnecessary preprocessing, no bug
...
--HG--
extra : rebase_source : b8bfed7a5b55652fd8a9b3bf3c601accb8b2022f
2013-02-17 17:49:25 -08:00
Mike Hommey
ab10e4ced9
Bug 840094 - Change how nsZipArchive logging works. r=taras,r=gps
...
Now log in a single file given by the MOZ_JAR_LOG_FILE environment variable.
Log entries contain the URI of the Zip archive, followed by the path in the
archive.
* * *
Bug 840094 - Fixup for debug builds failure because of nsZipArchive::CloseArchive being called several times
2013-02-19 11:02:12 +01:00
John Ford
721d2ac3e1
bug 839298 - fix json file creation for git users r=ted
2013-02-19 10:24:16 -08:00
Hector Zhao
67855217e7
Bug 842228 - Set shell to open in AddDisabledDDEHandlerValues. r=bbondy
2013-02-18 15:53:06 +08:00
John Ford
bc62771017
Bug 839298 - One True JSON file of build information r=ted
2013-02-15 16:16:02 -08:00
Joey Armstrong
f41e1b40f8
bug 746277: replace hg commands with functions
2013-02-15 17:00:12 -05:00
Dave Townsend
441894d70a
Bug 554780: Make plugins provider correctly handle plugins being added and removed through detection at runtime. r=Unfocused
2013-02-15 10:12:44 -06:00
Drew Willcoxon
5f349eba4b
Bug 648675 - Allow comments and URL opt-in in content/plugin crash UI. r=dolske,ted
2013-02-14 15:57:50 -08:00
Ed Morley
990b056b39
Merge mozilla-central to mozilla-inbound
2013-02-14 11:09:15 +00:00
Ed Morley
47e1a3a3ef
Merge latest green inbound changeset to mozilla-central
2013-02-14 10:44:41 +00:00
Mike Hommey
b1a48f4425
Bug 840598 - Search for l10n files in all app bases during l10n-repack. r=gps
2013-02-14 08:18:18 +01:00
Tatiana Meshkova
d1a3e88b7f
Bug 837730 - Add missing NULL definition so that updater will compile on some Linux platforms. r=rstrong
2013-02-12 16:14:13 -08:00
Mike Hommey
640e79f848
Bug 755724 - Move browser application in a subdirectory. r=jimm
2013-02-11 14:10:16 +01:00
Bobby Holley
b9788f9477
Bug 841067 - Fix up CertUtils. r=bz
...
This is yet another piece of broken code that relies on the "find the |this|
object" behavior that we're removing. Moreover, it's not caught by our compat
hack, because Components.utils is a bizarre object that implements
nsIXPCScriptable (giving it a custom JSClass->name that's not XPCWN_NoHelper)
while not implementing nsIClassInfo (which would have put the method on the
prototype and made this never work in the first place). We _could_ add special
support for the Cu JSClass name in our compat hack, but I think we should just
fix it here and assume this pattern is not particularly common in external
consumers.
2013-02-14 10:40:15 +01:00
Chris Cooper
26b7d309a8
Bug 785392 - Upload mar and mbsdiff when present - r=aki
2013-02-13 18:50:18 -05:00
Jim Mathies
472c77a798
Bug 839793 - TelemetryTimestamps.jsm imported using the wrong path. r=glandium
2013-02-09 12:28:38 -06:00
Dave Hylands
77eebe60e5
Bug 827896 - Cancel download rather than letting it fail when powering off the phone. r=rstrong
2013-02-08 19:36:16 -08:00
Mike Hommey
362f974085
Bug 793767 - Use the executable file location to derive the update root. r=rstrong
2013-02-08 15:58:52 +01:00
Ed Morley
a94fd53e44
Merge mozilla-inbound to mozilla-central
2013-02-08 11:00:58 +00:00
Phil Ringnalda
5a711e4b72
Merge m-c to fx-team
...
--HG--
rename : content/media/webaudio/AudioEventTimeline.h => content/media/AudioEventTimeline.h
2013-02-07 07:16:22 -08:00
Benjamin Smedberg
757b5fdb9e
Bug 831921 - Make the plugin UI less broken-looking for all plugins except for crashed plugins, including visual tweaks by shorlander. r=jaws
2013-02-06 15:11:36 -05:00
Robert Strong
aea7210789
Bug 753730 - Intermittent test_0110_general_svc.js failure in head_update.js | UPDATE TYPE complete. r=bbondy
2013-02-05 10:48:00 -08:00
Irving Reid
beb243d131
Bug 810146: Add telemetry for addon manager startup times, unpacked add-ons and various changes detected at startup r=Mossop
...
--HG--
rename : browser/modules/TelemetryTimestamps.jsm => toolkit/modules/TelemetryTimestamps.jsm
rename : browser/modules/test/browser_TelemetryTimestamps.js => toolkit/modules/tests/browser_TelemetryTimestamps.js
2013-02-07 16:47:33 -05:00
Robert Strong
e2499456c7
Bug 767968 - Intermittent test_0201_app_launch_apply_update.js, test_0203_app_launch_apply_update.js | WindowsError: [Error 13] The process cannot access the file because it is being used by another process: '...\maintenanceservice_installer.exe'. r=bbondy
2013-02-04 17:54:13 -08:00
Robert Strong
19f32a6557
Bug 762032 - Intermittent test_0201_app_launch_apply_update_svc.js | WindowsError: [Error 13] The process cannot access the file because it is being used by another process: '...\ExecutableDir.tmp\bin\uninstall\helper.exe'. r=bbondy
2013-02-04 17:54:02 -08:00
Ehsan Akhgari
1b5f0b2530
Merge mozilla-central into mozilla-inbound
2013-02-03 12:43:44 -05:00