Kyle Machulis
|
255406cbe7
|
Backout of c129811b87ef due to mochi bustage
|
2012-08-23 12:00:51 -07:00 |
|
Kyle Machulis
|
1485cd59c9
|
Bug 783426: Patch 2 - Async DOMRequest Firing Tests; r=sicking
|
2012-08-23 09:52:54 -07:00 |
|
Kyle Machulis
|
87763f254a
|
Bug 783426: Patch 1 - Async DOMRequest Firing; r=sicking
|
2012-08-23 09:52:29 -07:00 |
|
Rafael Ávila de Espíndola
|
e3ab16964a
|
Bug 784889 - Use nullptr in a function that returns a pointer. r=ms2ger.
|
2012-08-23 09:56:10 -04:00 |
|
Peter Van der Beken
|
854457d901
|
Fix for bug 768692 (Move DOM list binding generation to the new DOM binding codegen). r=bzbarsky.
--HG--
extra : rebase_source : 651a0fac4c9a87ef1c0a9cd91588c6421fd050c4
|
2012-05-22 15:46:20 +02:00 |
|
Justin Lebar
|
44c2b316f2
|
Bug 784436 - Part 2: Use new infallible nsIDocShell methods. r=bz
|
2012-08-22 18:27:04 -07:00 |
|
Kyle Machulis
|
7eb2fcd355
|
Backout be6da7f8989c due to bustage
|
2012-08-22 18:11:52 -07:00 |
|
Kyle Machulis
|
854a04a0f2
|
Backout 81fc1a3fc920 due to bustage
|
2012-08-22 18:11:24 -07:00 |
|
Kyle Machulis
|
b836bcf93f
|
Bug 783426: Patch 2 - Tests for Async DOMRequest Firing; r=sicking
|
2012-08-22 18:04:01 -07:00 |
|
Kyle Machulis
|
5357f4784c
|
Bug 783426: Patch 1 - Async DOMRequest Firing; r=sicking
|
2012-08-22 18:03:43 -07:00 |
|
Kyle Machulis
|
7751fd98d3
|
Backing out df43ad6d04c1 due to incorrect commit messages
|
2012-08-22 18:02:36 -07:00 |
|
Kyle Machulis
|
b29f5f6001
|
Backing out 542abbd15139 due to incorrect commit messages
|
2012-08-22 18:00:57 -07:00 |
|
Kyle Machulis
|
428ec0171b
|
Bug 783426: Patch 2 - Tests for Async DOMRequest Firing
|
2012-08-22 17:58:05 -07:00 |
|
Kyle Machulis
|
2b37cadee3
|
Bug 783426: Patch 1 - Async DOMRequest Firing
|
2012-08-22 17:57:50 -07:00 |
|
Brian Hackett
|
3a886a65cd
|
Allow purging analysis-temporary while retaining jitcode, bug 778724. r=luke
|
2012-08-22 12:28:34 -06:00 |
|
Vicamo Yang
|
be454322bf
|
Bug 707659 - Part 1: DOM implementation, r=jlebar
|
2012-08-23 01:30:27 +08:00 |
|
Ehsan Akhgari
|
a8a14f9163
|
Merge the landing of bug 579517 to mozilla-inbound
|
2012-08-22 12:12:15 -04:00 |
|
Ed Morley
|
25981862a2
|
Backout d62929fa4325 for talos crashes
|
2012-08-22 14:53:11 +01:00 |
|
Brian Hackett
|
0bfe9633b5
|
Allow purging analysis-temporary while retaining jitcode, bug 778724. r=luke
|
2012-08-22 06:27:18 -06:00 |
|
Eric Chou
|
5ea354700f
|
Bug 783520 - [b2g-bluetooth] follow-up to bug 730992, r=qdot
|
2012-08-22 18:37:08 +08:00 |
|
Doug Sherk
|
b289e024ad
|
Bug 780397: Convert FrameMetrics.mViewportScrollOffset from nsIntPoint to gfx::Point r=roc
|
2012-08-21 21:37:15 -07:00 |
|
Gina Yeh
|
2326b507ac
|
Bug 783454 - v1: Create devicefound event with event generator, r=qdot
|
2012-08-21 10:54:28 +08:00 |
|
Ryan VanderMeulen
|
f1e04816ea
|
Merge m-c to inbound.
|
2012-08-20 20:21:35 -04:00 |
|
Olli Pettay
|
e1b92aea91
|
Bug 783856 - Autogen PopupBlockedEvent, r=jst
|
2012-08-20 11:26:34 -07:00 |
|
Fabrice Desré
|
13d2c286fb
|
Bug 783825 - Fix b2g breakage after bug 553102 - Part 1 : fix mozChromeEvent events and system message manager [r=gal]
|
2012-08-19 12:00:19 -07:00 |
|
Ehsan Akhgari
|
8c296bbcd4
|
Bug 579517 - Part 1: Automated conversion of NSPR numeric types to stdint types in Gecko; r=bsmedberg
This patch was generated by a script. Here's the source of the script for
future reference:
function convert() {
echo "Converting $1 to $2..."
find . ! -wholename "*nsprpub*" \
! -wholename "*security/nss*" \
! -wholename "*/.hg*" \
! -wholename "obj-ff-dbg*" \
! -name nsXPCOMCID.h \
! -name prtypes.h \
-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 PRInt8 int8_t
convert PRUint8 uint8_t
convert PRInt16 int16_t
convert PRUint16 uint16_t
convert PRInt32 int32_t
convert PRUint32 uint32_t
convert PRInt64 int64_t
convert PRUint64 uint64_t
convert PRIntn int
convert PRUintn unsigned
convert PRSize size_t
convert PROffset32 int32_t
convert PROffset64 int64_t
convert PRPtrdiff ptrdiff_t
convert PRFloat64 double
|
2012-08-22 11:56:38 -04:00 |
|
Phil Ringnalda
|
a08361ddc1
|
Back out a9f462ea67f9 (bug 783825) for mochitest-chrome bustage
|
2012-08-18 21:08:40 -07:00 |
|
Fabrice Desré
|
26a7a25700
|
Bug 783825 - Fix b2g breakage after bug 553102 [r=cjones]
|
2012-08-18 19:50:44 -07:00 |
|
Masatoshi Kimura
|
db1897a657
|
Bug 783532 - Remove DOMError::CreateForDOMExceptionCode. r=sicking
|
2012-08-18 08:25:49 -04:00 |
|
Bill McCloskey
|
dde823bad5
|
Bug 783416 - Stop saving the prototype in WindowStateHolder (r=mrbkap)
|
2012-08-17 10:09:01 -07:00 |
|
Eric Chou
|
987b293c10
|
Bug 730992 - Patch 1: The DOM boilerplate for BluetoothPairingEvent, r=qdot, sr=mrbkap
---
dom/base/nsDOMClassInfo.cpp | 9 +++
dom/base/nsDOMClassInfoClasses.h | 1 +
dom/bluetooth/BluetoothPairingEvent.cpp | 78 +++++++++++++++++++++++++
dom/bluetooth/BluetoothPairingEvent.h | 70 ++++++++++++++++++++++
dom/bluetooth/Makefile.in | 2 +
dom/bluetooth/nsIDOMBluetoothPairingEvent.idl | 15 +++++
6 files changed, 175 insertions(+), 0 deletions(-)
create mode 100644 dom/bluetooth/BluetoothPairingEvent.cpp
create mode 100644 dom/bluetooth/BluetoothPairingEvent.h
create mode 100644 dom/bluetooth/nsIDOMBluetoothPairingEvent.idl
|
2012-08-17 18:35:59 +08:00 |
|
Gregor Wagner
|
4eedb8cc10
|
Bug 779379 - B2G MobileConnection: Hook up to permissions manager. r=jlebar
|
2012-08-16 17:42:26 -07:00 |
|
Neil Deakin
|
0413e44a55
|
Bug 743975 - use a widget listener interface instead of the remaining events that don't need an event, r=tn,jmathies,netzen,smichaud,karlt,blassey,chrisjones
|
2012-08-15 14:52:42 -04:00 |
|
Aryeh Gregor
|
3304e571cb
|
Bug 782252 - Cast NS_ENUMERATOR_FALSE to nsresult; r=ehsan
|
2012-08-07 17:54:44 +03:00 |
|
Ehsan Akhgari
|
b457a9ddf0
|
Merge removal of nsnull
|
2012-08-14 11:29:00 -04:00 |
|
Ehsan Akhgari
|
3c916ab848
|
Bug 626472 - Remove on last nsnull!
|
2012-08-14 11:28:45 -04:00 |
|
Justin Lebar
|
adfc4e45ba
|
Bug 769254 - Part 2: Modify nsPIWindowWatcher::OpenWindowJS (renamed to OpenWindow2) so we can pass in the URL for target=_blank links without navigating the opened window to that URL. r=bz
|
2012-08-14 10:58:00 -04:00 |
|
Jim Mathies
|
94824b0433
|
Bug 781977 - Add optional pressure and source parameters to nsIDOMWindowUtils's sendMouse methods, r=roc+smaug.
|
2012-08-14 09:27:39 -05:00 |
|
Aryeh Gregor
|
e2dd9c2028
|
Bug 626472 part 3 - Remove nsnull for good; r=ehsan
|
2012-08-12 13:43:47 +03:00 |
|
Alexander Boldyrev
|
f61c980db5
|
Bug 738866 - Implement WEBGL_depth_texture extension - r=jgilbert
|
2012-08-13 18:17:55 -07:00 |
|
Neil Deakin
|
1a89394d0d
|
Bug 391834, don't allow prompts in beforeunload, unload and pagehide events,r=smaug,patch mostly by gavin
|
2012-08-13 15:05:34 -04:00 |
|
Neil Deakin
|
afbbe47319
|
Bug 391834, rearrange some popup dialog code to be simpler,r=smaug,patch mostly by gavin
|
2012-08-13 15:03:59 -04:00 |
|
Justin Lebar
|
446f9d033a
|
Bug 777135 - Part 3: Remove nsDOMWindowUtils::GetIsApp and friends. r=mounir
--HG--
extra : rebase_source : ac3db88b7eb03397c4ae514624e1f3021947c396
|
2012-08-13 12:58:38 -04:00 |
|
Justin Lebar
|
8ae5fcb7ff
|
Bug 777135 - Part 2: Stop using nsDOMWindowUtils::GetIsApp and friends, and instead use the relevant methods on the principal. r=mounir
--HG--
extra : rebase_source : fa8a153a1edc8f64b230b67f121ba5eaaf1098e6
|
2012-08-13 12:58:38 -04:00 |
|
Phil Ringnalda
|
be4c3892b1
|
Bug 782167 - Downgrade MOZ_ASSERT(win->IsClosedOrClosing()) to an NS_ASSERTION until it stops happening so often, r=khuey
--HG--
extra : rebase_source : 774096aa4cfa058d1aa1a32596ae65e464e1baf9
|
2012-08-12 20:52:21 -07:00 |
|
Robert O'Callahan
|
f982af7739
|
Bug 383026. Centralize code that converts DOM scroll offsets to/from layout scroll positions. r=dbaron
--HG--
extra : rebase_source : a6118e0eeea749a601e055741e35cdcd15d81e57
|
2012-08-10 23:17:06 +12:00 |
|
Kan-Ru Chen (陳侃如)
|
b72b615e48
|
Bug 781353 - Hook up "power" to Permission Manager. r=jlebar
|
2012-08-11 19:40:43 +08:00 |
|
David Keeler
|
37763d23ef
|
Bug 741130 - Attach XBL bindings for html:objects in nsElementSH::PostCreate. r=bz, r=jwein
|
2012-08-10 09:19:24 -07:00 |
|
Ryan VanderMeulen
|
212cdce23a
|
Merge inbound to m-c.
|
2012-08-11 22:33:42 -04:00 |
|
Masayuki Nakano
|
29aa654039
|
Bug 719320 part.9 Implement nsIDOMWindowUtils::sendWheelEvent() for tests r=smaug, sr=jst
|
2012-08-12 10:42:36 +09:00 |
|