Mike Hommey
6ee628d425
Bug 1147283 - Replace mozpack.path with mozpath. r=mshal
...
Back when mozpack.path was added, it was used as:
import mozpack.path
mozpack.path.func()
Nowadays, the common idiom is:
import mozpack.path as mozpath
mozpath.func()
because it's shorter.
$ git grep mozpath\\. | wc -l
423
$ git grep mozpack.path\\. | wc -l
123
This change was done with:
$ git grep -l mozpack.path\\. | xargs sed -i 's/mozpack\.path\./mozpath./g'
$ git grep -l 'import mozpack.path$' | xargs sed -i 's/import mozpack.path$/\0 as mozpath/'
$ (pat='import mozpack.path as mozpath'; git grep -l "$pat" | xargs sed -i "1,/$pat/b;/$pat/d")
2015-03-27 08:13:16 +09:00
Alessio Placitelli
a29484fa7f
Bug 1134279 - Change Telemetry data producers to use the correct recording flags. r=vladan
2015-03-23 04:39:00 +01:00
Wes Kocher
a5169c8c16
Merge m-c to fx-team a=merge CLOSED TREE
2015-03-24 18:38:29 -07:00
Wes Kocher
05e6efa386
Merge fx-team to m-c a=merge CLOSED TREE
2015-03-24 18:12:58 -07:00
Ryan VanderMeulen
77bbb27773
Backed out changeset 37bd20ca096a (bug 1139656) for test_blocklistchange.js xpcshell failures.
...
CLOSED TREE
2015-03-24 15:36:48 -04:00
Stephen Pohl
134b35763e
Bug 1146565 - Ensure proper CDM install state when the media.eme.enabled pref is toggled when Firefox isn't running. r=mossop
2015-03-24 15:36:19 -04:00
Ryan VanderMeulen
8c5d2a221a
Backed out changeset b78aa57b284e (bug 1146565) for test_blocklistchange.js xpcshell failures.
...
CLOSED TREE
2015-03-24 15:33:21 -04:00
Dão Gottwald
be28907731
Bug 1139656 - Implement the first pieces of the all-doorhanger install flow for add-ons installed from websites. r=dtownsend
2015-03-24 18:54:59 +01:00
Stephen Pohl
5e09c9d4bc
Bug 1146565: Ensure proper CDM install state when the media.eme.enabled pref is toggled when Firefox isn't running. r=mossop
2015-03-24 13:04:57 -04:00
Ryan VanderMeulen
be9c6b1dbe
Merge fx-team to m-c. a=merge
2015-03-24 11:55:30 -04:00
Brian Grinstead
136e11cf5a
Bug 1094821 - Make it possible for an application to load extra themes into LightweightThemeManager.usedThemes;r=Gijs
...
When calling addBuiltInTheme, theme objects are stored in a Map keyed on ID
and are appended onto the usedThemes array. These aren't removeable and don't
get stored in the pref.
2015-03-23 15:32:43 -07:00
Brian Grinstead
988139d2de
Bug 1094821 - Store currently selected lightweight theme in the selectedThemeID pref instead figuring it out based on the order of the usedThemes pref;r=Gijs
2015-03-23 15:32:41 -07:00
Carsten "Tomcat" Book
9713940a35
merge mozilla-inbound to mozilla-central a=merge
2015-03-23 13:18:35 +01:00
Stephen Pohl
5415eb6c77
Backout 0e6aa605af74 (bug 1140263) now that Adobe EME is cleared to be turned on for Windows Vista and above. r=me
2015-03-22 23:26:26 -04:00
Ehsan Akhgari
33bb32f549
Bug 1145631 - Part 1: Replace MOZ_OVERRIDE and MOZ_FINAL with override and final in the tree; r=froydnj
...
This patch was automatically generated using the following script:
function convert() {
echo "Converting $1 to $2..."
find . \
! -wholename "*/.git*" \
! -wholename "obj-ff-dbg*" \
-type f \
\( -iname "*.cpp" \
-o -iname "*.h" \
-o -iname "*.c" \
-o -iname "*.cc" \
-o -iname "*.idl" \
-o -iname "*.ipdl" \
-o -iname "*.ipdlh" \
-o -iname "*.mm" \) | \
xargs -n 1 sed -i -e "s/\b$1\b/$2/g"
}
convert MOZ_OVERRIDE override
convert MOZ_FINAL final
2015-03-21 12:28:04 -04:00
Wes Kocher
a694cc39ce
Merge m-c to inbound a=merge CLOSED TREE
2015-03-20 18:01:17 -07:00
Stephen Pohl
79b276834a
Bug 1145694: Uninstall Adobe EME when media.eme.enabled is set to false. r=mossop
2015-03-22 23:12:16 -04:00
Stephen Pohl
4d29cc72c2
Bug 1145336
: Test updates. r=jwwang
2015-03-22 23:12:07 -04:00
Stephen Pohl
5690cc9e3f
Bug 1145336
: Remove old GMPs during updates. r=jwwang
2015-03-22 23:12:03 -04:00
Mike Hommey
649c7a056c
Bug 910660 - Make the SimplePackager emit a separate base for addons. r=gps
...
Addons are detected by the presence of an install.rdf file in their base.
2015-03-24 09:10:33 +09:00
Dão Gottwald
2dbfa91e3d
Bug 1139656 - Implement the first pieces of the all-doorhanger install flow for add-ons installed from websites. r=dtownsend
2015-03-24 22:24:49 +01:00
Stephen Pohl
8382b0a781
Bug 1140263: Disable Adobe EME on all platforms for now. r=cpearce
2015-03-19 22:59:49 -04:00
Stephen Pohl
bb369ef745
Bug 1140263: Test updates. r=mossop
2015-03-19 22:59:45 -04:00
Stephen Pohl
a3d354c6dc
Bug 1140263: Enable Adobe EME on Windows Vista+ and add a pref to force-enable it on other platforms. r=mossop
2015-03-19 22:59:38 -04:00
Margaret Leibovic
34684f9b7f
Bug 1131004 - Provide a more detailed description for pre-installed OpenH264 add-on. r=gfritzsche
2015-03-11 11:40:29 -07:00
Robert Strong
2bc7240f29
Bug 1081450 - Copy maintenance service binary into its install directory on Windows 8 when the installed binary is different. r=bbondy
2015-03-19 16:43:29 -07:00
Robert Strong
0c5e5bd22f
Bug 1142716 - update/tests/TestAUSHelper.cpp CheckMsg leaks |inFP| and |mbuf|. r=bbondy
2015-03-18 16:25:05 -07:00
Mike Hommey
0382ffd887
Bug 1143510 - Fix line numbers for removal errors during make package. r=gps
2015-03-17 10:04:20 +09:00
Stephen Pohl
8334bc893e
Bug 1140523: Send correct onEnabling/onDisabling notifications when EME preferences change. r=mossop
2015-03-16 14:59:08 -04:00
Phil Ringnalda
42b0744054
Merge m-c to m-i
2015-03-15 19:42:35 -07:00
Sebastian Hengst
ad9ecefde9
Bug 1143470 - Add BUG_COMPONENT to moz.build files in toolkit and xulrunner. r=gavin
2015-03-15 19:36:24 +01:00
Stephen Pohl
3060605432
Bug 1140522: Test updates. r=mossop
2015-03-14 23:25:46 -04:00
Stephen Pohl
7b6d91f4ec
Bug 1140522: Set proper permissions on GMP when disabled. r=mossop
2015-03-14 23:25:42 -04:00
Stephen Pohl
c3da2505e0
Bug 1140522: Ensure proper use of appDisabled and userDisabled in GMPProvider.jsm. r=mossop
2015-03-14 23:25:38 -04:00
Jonathan Griffin
84011a87cc
Bug 1116187 - Disable failing mochitest-chrome tests for B2G, r=gbrown
2015-02-06 16:30:37 -08:00
Dave Townsend
521765b0b3
Bug 1068087: Switch about:plugins to run remotely. r=mconley
2015-01-08 12:40:14 -08:00
Ryan VanderMeulen
476fec862b
Merge m-c to inbound. a=merge
2015-03-24 11:58:07 -04:00
Jim Mathies
d41a5e64ac
Bug 1129040 - Add a blocklist shim in the content process and forward requests to the parent process. r=Mossop
2015-03-23 08:40:08 -05:00
Mike Shal
f349606940
Bug 1137000 - Enable SDK building on nightlies; r=glandium
2015-03-17 15:29:07 -04:00
Stephen Pohl
7e6ccdcc90
Backout 9000e74fa1fe because it requires test updates. r=me
2015-03-10 20:42:30 -04:00
Stephen Pohl
c9c26be0dc
Bug 1140522: Ensure proper use of appDisabled and userDisabled in GMPProvider.jsm. r=mossop
2015-03-10 20:30:58 -04:00
Nick Alexander
01e3ecaeaa
Bug 927388 - Follow-up: fix bustage on a CLOSED TREE.
2015-03-10 11:40:39 -07:00
Ahmed Khalil
d2aca5c19d
Bug 927388 - Produce and upload GeckoView AAR during packaging. r=nalexander
2015-03-06 10:17:00 -08:00
Carsten "Tomcat" Book
4cf0656fa3
Merge mozilla-central to fx-team
2015-03-10 14:05:23 +01:00
Wes Kocher
d0149520d8
Merge m-c to inbound a=merge CLOSED TREE
2015-03-09 19:06:17 -07:00
Wes Kocher
0c00a67ca9
Merge inbound to m-c a=merge CLOSED TREE
2015-03-09 18:27:28 -07:00
Gijs Kruitbosch
8786da8387
Bug 1129219 - fix learnMoreURL to be a getter so we don't access appInfo really early, rs=bustage-and-Mossop's-advice on a CLOSED TREE
2015-03-09 19:43:08 +00:00
Gijs Kruitbosch
1269ca1b0b
Bug 1129219 - add learn more link for EME provider, r=MattN
2015-03-09 17:26:15 +00:00
Robert Strong
cdc420df54
Bug 1140672 - Remove app update file migration code for Windows. r=spohl
2015-03-09 19:58:30 -07:00
Mike Hommey
e4b247f703
Bug 868814 - Fold mozalloc library into mozglue. r=njn
2015-03-10 10:01:52 +09:00