Jan-Ivar Bruaroey
|
e413073a8c
|
Bug 1046245 - enumerateDevices session-persisted hmac id. r=jesup
|
2015-02-23 11:50:48 -05:00 |
|
Jan-Ivar Bruaroey
|
c02f5d7938
|
Bug 1046245 - enumerateDevices returns label for pages w/active gUM or persistent permissions. r=jesup
|
2015-03-03 09:51:05 -05:00 |
|
Jan-Ivar Bruaroey
|
ba8b7e1552
|
Bug 1046245 - enumerateDevices (harmless interface version) r=smaug, r=jesup
|
2015-03-03 09:51:05 -05:00 |
|
Randell Jesup
|
19225aa9cf
|
Backed out 6 changesets (bug 1046245) on a CLOSED TREE
|
2015-03-29 01:42:32 -04:00 |
|
Jan-Ivar Bruaroey
|
3babe17c58
|
Bug 1046245 - enumerateDevices session-persisted hmac id. r=jesup
|
2015-02-23 11:50:48 -05:00 |
|
Jan-Ivar Bruaroey
|
9ddd163dc7
|
Bug 1046245 - enumerateDevices returns label for pages w/active gUM or persistent permissions. r=jesup
|
2015-03-03 09:51:05 -05:00 |
|
Jan-Ivar Bruaroey
|
880d534f17
|
Bug 1046245 - enumerateDevices (harmless interface version). r=smaug, r=jesup
|
2015-03-03 09:51:05 -05:00 |
|
Phil Ringnalda
|
f45c1bd02b
|
Back out 6 changesets (bug 1046245) for thinking that MSVC would have anything to do with a __PRETTY_FUNCTION__
CLOSED TREE
Backed out changeset 9e3ecca831d8 (bug 1046245)
Backed out changeset 87dc145f4da8 (bug 1046245)
Backed out changeset 01606cf19a77 (bug 1046245)
Backed out changeset 2ed2b15fe940 (bug 1046245)
Backed out changeset 2b99b193828a (bug 1046245)
Backed out changeset d1ac67faccbb (bug 1046245)
|
2015-03-28 19:57:17 -07:00 |
|
Jan-Ivar Bruaroey
|
b3874cae4e
|
Bug 1046245 - enumerateDevices session-persisted hmac id. r=jesup
|
2015-02-23 11:50:48 -05:00 |
|
Jan-Ivar Bruaroey
|
c925f766d2
|
Bug 1046245 - enumerateDevices returns label for pages w/active gUM or persistent permissions. r=jesup
|
2015-03-03 09:51:05 -05:00 |
|
Jan-Ivar Bruaroey
|
c13f1afd8c
|
Bug 1046245 - enumerateDevices (harmless interface version). r=smaug, r=jesup
|
2015-03-03 09:51:05 -05:00 |
|
Ryan VanderMeulen
|
4da777479a
|
Backed out 6 changesets (bug 1046245) for bustage on a CLOSED TREE.
Backed out changeset 222c2f9e3bc9 (bug 1046245)
Backed out changeset 4251eef464a2 (bug 1046245)
Backed out changeset 592f4cc23197 (bug 1046245)
Backed out changeset 5bfb9a1c0550 (bug 1046245)
Backed out changeset e966a5df87b6 (bug 1046245)
Backed out changeset 609f3ca64004 (bug 1046245)
|
2015-03-28 16:24:25 -04:00 |
|
Jan-Ivar Bruaroey
|
016a59f3b3
|
Bug 1046245 - enumerateDevices session-persisted hmac id. r=jesup
|
2015-02-23 11:50:48 -05:00 |
|
Jan-Ivar Bruaroey
|
0bdff41c58
|
Bug 1046245 - enumerateDevices returns label for pages w/active gUM or persistent permissions. r=jesup
|
2015-03-03 09:51:05 -05:00 |
|
Jan-Ivar Bruaroey
|
6f2c68c317
|
Bug 1046245 - enumerateDevices (harmless interface version). r=smaug, r=jesup
|
2015-03-03 09:51:05 -05: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 |
|
Boris Zbarsky
|
54c64f20a9
|
Bug 1117172 part 3. Change the wrappercached WrapObject methods to allow passing in aGivenProto. r=peterv
The only manual changes here are to BindingUtils.h, BindingUtils.cpp,
Codegen.py, Element.cpp, IDBFileRequest.cpp, IDBObjectStore.cpp,
dom/workers/Navigator.cpp, WorkerPrivate.cpp, DeviceStorageRequestChild.cpp,
Notification.cpp, nsGlobalWindow.cpp, MessagePort.cpp, nsJSEnvironment.cpp,
Sandbox.cpp, XPCConvert.cpp, ExportHelpers.cpp, and DataStoreService.cpp. The
rest of this diff was generated by running the following commands:
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObjectInternal\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObjectInternal\((?:aCx|cx|aContext|aCtx|js))\)/\1, aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapNode\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapNode\((?:aCx|cx|aContext|aCtx|js))\)/\1, aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObject\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(Binding(?:_workers)?::Wrap\((?:aCx|cx|aContext|aCtx|js), [^,)]+)\)/\1, aGivenProto)/g'
|
2015-03-19 10:13:33 -04:00 |
|
Wes Kocher
|
c659ea6bce
|
Backed out changeset bf25101e66cf (bug 1095098) for build bustage
|
2014-12-08 16:27:12 -08:00 |
|
Denis Volk
|
c3639f1324
|
Bug 1095098: move do_QueryObject templates into their own header r=froydnj
|
2014-11-20 12:20:10 +01:00 |
|
Jan-Ivar Bruaroey
|
e8b5e63e1b
|
Bug 1033885 - add mediaDevices.getUserMedia with promises. r=bz, r=jesup
|
2014-09-20 02:20:41 -04:00 |
|