Ehsan Akhgari
|
2824b29025
|
Bug 895322 - Part 1: Replace the usages of MOZ_STATIC_ASSERT with C++11 static_assert; r=Waldo
This patch was mostly generated by running the following scripts on the codebase, with some
manual changes made afterwards:
# static_assert.sh
#!/bin/bash
# Command to convert an NSPR integer type to the equivalent standard integer type
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 "*.cc" \
-o -iname "*.mm" \) | \
xargs -n 1 `dirname $0`/assert_replacer.py #sed -i -e "s/\b$1\b/$2/g"
}
convert MOZ_STATIC_ASSERT static_assert
hg rev --no-backup mfbt/Assertions.h \
media/webrtc/signaling/src/sipcc/core/includes/ccapi.h \
modules/libmar/src/mar_private.h \
modules/libmar/src/mar.h
# assert_replacer.py
#!/usr/bin/python
import sys
import re
pattern = re.compile(r"\bMOZ_STATIC_ASSERT\b")
def replaceInPlace(fname):
print fname
f = open(fname, "rw+")
lines = f.readlines()
for i in range(0, len(lines)):
while True:
index = re.search(pattern, lines[i])
if index != None:
index = index.start()
lines[i] = lines[i][0:index] + "static_assert" + lines[i][index+len("MOZ_STATIC_ASSERT"):]
for j in range(i + 1, len(lines)):
if lines[j].find(" ", index) == index:
lines[j] = lines[j][0:index] + lines[j][index+4:]
else:
break
else:
break
f.seek(0, 0)
f.truncate()
f.write("".join(lines))
f.close()
argc = len(sys.argv)
for i in range(1, argc):
replaceInPlace(sys.argv[i])
--HG--
extra : rebase_source : 4b4a4047d82f2c205b9fad8d56dfc3f1afc0b045
|
2013-07-18 13:59:53 -04:00 |
|
Ehsan Akhgari
|
ef4b479714
|
Bug 872127 - Part 2: Replace mozilla/StandardInteger.h with stdint.h; r=Waldo,ted
|
2013-07-30 10:25:31 -04:00 |
|
Cameron McCormack
|
fdb36cc83d
|
Bug 895285 - Handle viewBox="" setting optimization correctly. r=jwatt
|
2013-07-24 14:48:12 +10:00 |
|
Cameron McCormack
|
ad284632b7
|
Bug 896159 - Expose textLength and lengthAdjust on SVGTextPathElements. r=jwatt
|
2013-07-24 10:01:35 +10:00 |
|
David Zbarsky
|
1466d5fd4f
|
Bug 888685: SVGAnimatedLengthList shouldn't inherit nsISupports r=Ms2ger
|
2013-07-23 01:34:18 -07:00 |
|
David Zbarsky
|
1c217aae2d
|
Bug 888685: SVGAnimatedRect shouldn't inherit nsISupports r=Ms2ger
|
2013-07-23 01:34:17 -07:00 |
|
David Zbarsky
|
25658dc89f
|
Bug 892853 - Remove some xpidl for SVG r=Ms2ger
|
2013-07-17 23:54:09 -07:00 |
|
Brian O'Keefe
|
f4815f2203
|
Bug 883502 - Part 1: Move 'chromium_config.mk' includes after rules.mk. r=gps
|
2013-07-04 08:28:43 -04:00 |
|
Cameron McCormack
|
b05fa0ae0b
|
Bug 893484 - Set second last polygon marker type before appending last one. r=jwatt
|
2013-07-15 19:50:09 +10:00 |
|
Jonathan Watt
|
b3855202dd
|
Bug 880544 - Fix leak in DOMSVGPointList. r=dzbarksy
|
2013-07-12 11:25:27 +01:00 |
|
Jonathan Watt
|
c5b68c1e5a
|
Bug 880544 - Fix leak in DOMSVGPathSegList. r=dzbarksy
|
2013-07-12 11:25:26 +01:00 |
|
Jonathan Watt
|
c2a7752d69
|
Bug 880544 - Fix leak in DOMSVGNumberList. r=dzbarksy
|
2013-07-12 11:25:26 +01:00 |
|
Jonathan Watt
|
5040fbd69c
|
Bug 880544 - Fix leak in DOMSVGLengthList. r=dzbarksy
|
2013-07-12 11:25:26 +01:00 |
|
Jonathan Watt
|
b07d71c941
|
Bug 880544 - Fix leak in DOMSVGTransformList. r=dzbarksy
|
2013-07-12 11:25:25 +01:00 |
|
Cameron McCormack
|
aab2e6c2f0
|
Bug 890782 - Part 2: Make NS_STATE_SVG_NONDISPLAY_CHILD a global state bit and rename it. r=jwatt
|
2013-07-12 17:13:07 +10:00 |
|
Cameron McCormack
|
a1c5d8d92b
|
Bug 879659 - Followup for unused variable error.
|
2013-07-12 17:11:30 +10:00 |
|
Cameron McCormack
|
e5b78f3048
|
Bug 879659 - Part 3: Implement <marker orient="auto-start-reverse">. r=longsonr
|
2013-07-12 16:39:38 +10:00 |
|
Cameron McCormack
|
646cffaae0
|
Bug 879659 - Part 2: Refactor SVG marker handling to support more types of markers in the future. r=longsonr
|
2013-07-12 16:39:38 +10:00 |
|
Cameron McCormack
|
7173027b02
|
Bug 879659 - Add a pref for SVG 2 marker improvements. r=longsonr
|
2013-07-12 16:39:38 +10:00 |
|
Trevor Saunders
|
f33ade0d68
|
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
|
58b9f38453
|
Bug 892460 - Add MOZ_FINAL to a bunch of node classes. r=bz
|
2013-07-12 06:26:54 +09:00 |
|
Boris Zbarsky
|
50841552c2
|
Bug 883889. Call SetIsDOMBinding() in the nsINode constructor, and remove it from all the subclasses. r=peterv
This patch leaves the call in the Attr constructor, because we plan to make Attr not inherit from nsINode.
|
2013-07-11 11:58:29 -04:00 |
|
Ms2ger
|
3de3cc24fb
|
Bug 890695 - Use MOZ_THIS_IN_INITIALIZER_LIST in content/; r=mounir
|
2013-07-10 11:56:47 +02:00 |
|
Ms2ger
|
6efec5035f
|
Bug 888366 - Part a: Remove dead DOMCI_DATA uses and SVGRect classinfo; r=peterv
|
2013-07-10 11:55:16 +02:00 |
|
Cameron McCormack
|
7145c3dd08
|
Bug 569722 - Implement textLength and lengthAdjust on SVG text elements. r=longsonr
|
2013-07-07 17:27:51 +10:00 |
|
David Zbarsky
|
d917b292bc
|
Bug 888685: SVGAnimatedLength shouldn't inherit nsISupports r=Ms2ger
|
2013-07-05 11:57:35 -07:00 |
|
David Zbarsky
|
de6fcf5fcc
|
Bug 888685: SVGAnimatedAngle shouldn't inherit nsISupports r=Ms2ger
|
2013-07-05 11:57:35 -07:00 |
|
David Zbarsky
|
2cf302a666
|
Bug 888685: SVGAngle shouldn't inherit nsISupports r=Ms2ger
|
2013-07-05 11:57:35 -07:00 |
|
David Zbarsky
|
6f6773ecc3
|
Bug 888685: SVGAnimatedBoolean shouldn't inherit nsISupports r=Ms2ger
|
2013-07-05 11:57:35 -07:00 |
|
Masatoshi Kimura
|
1a9e38cc24
|
Bug 888323 - Stop including prtime.h in nsrootidl.idl. r=ehsan
|
2013-07-04 00:56:26 +09:00 |
|
Robert Longson
|
0c55559813
|
Bug 889329 - Implement deselectAll(). r=cam,sr=roc
|
2013-07-03 08:41:53 +01:00 |
|
Ryan VanderMeulen
|
1d99822149
|
Backed out changeset d155557b651c (bug 888323) for bustage.
CLOSED TREE
|
2013-07-02 14:15:39 -04:00 |
|
Masatoshi Kimura
|
c9b73ddb89
|
Bug 888323 - Stop including prtime.h in nsrootidl.idl. r=ehsan
|
2013-07-03 02:08:01 +09:00 |
|
Ms2ger
|
01f068a6e1
|
Bug 886289 - Move SVGAnimatedNumber to WebIDL; r=dzbarsky
|
2013-07-01 09:03:04 +02:00 |
|
Ms2ger
|
5ba35c354d
|
Bug 886270 - Move SVGAnimatedInteger to WebIDL; r=dzbarsky
|
2013-07-01 09:02:56 +02:00 |
|
Ms2ger
|
fa9bb545c0
|
Bug 886247 - Move SVGAnimatedEnumeration to WebIDL; r=dzbarsky
|
2013-07-01 09:02:46 +02:00 |
|
Robert Longson
|
35db2a3e66
|
Bug 829085 - Fix hit testing when vector-effect=non-scaling-stroke is used. r=dholbert
|
2013-06-26 13:31:06 +01:00 |
|
Cameron McCormack
|
a091acd9d2
|
Bug 886230 - Don't paint SVG text under DrawWindow(..., DRAWWINDOW_DO_NOT_FLUSH) when frames are dirty. r=roc
|
2013-06-25 16:01:38 +10:00 |
|
Ed Morley
|
702726731f
|
Backed out changeset d7c237784ce9 (bug 886230) for B2G mochitest-9 failures in test_bug582181-1.html
|
2013-06-25 13:45:09 +01:00 |
|
Cameron McCormack
|
994ad89b82
|
Bug 886230 - Don't paint SVG text under DrawWindow(..., DRAWWINDOW_DO_NOT_FLUSH) when frames are dirty. r=roc
|
2013-06-25 16:01:38 +10:00 |
|
David Zbarsky
|
21ce0909ad
|
Bug 885959 - Remove nsIDOMSVGAnimatedLength r=Ms2ger
|
2013-06-24 12:31:52 -07:00 |
|
Robert Longson
|
da4a0e4de0
|
Bug 601131 - Hang with feTurbulence with huge numOctaves. r=roc
|
2013-06-24 10:42:22 +01:00 |
|
Olli Pettay
|
62b1a05430
|
Bug 884296 - Remove the rest of the classinfos for DOM events, r=peterv
--HG--
extra : rebase_source : 9b397e2e19e8e15d2753dc5bf7c18e2b3147f92b
|
2013-06-20 17:13:52 +03:00 |
|
Brian O'Keefe
|
11bcc1cd9e
|
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 |
|
Ehsan Akhgari
|
486d201e1a
|
Bug 884020 - Don't use the register keyword in SVG code in order to fix the build with recent clangs; r=dholbert
|
2013-06-17 19:22:38 -04:00 |
|
David Zbarsky
|
54d09e2242
|
Bug 882553 - Convert SVGAnimatedString to WebIDL r=Ms2ger
|
2013-06-14 15:37:27 -07:00 |
|
David Zbarsky
|
65dc14f281
|
[Bug 882536] Remove nsIDOMSVGDocument r=Ms2ger
|
2013-06-14 15:37:27 -07:00 |
|
Trevor Saunders
|
a924c0c760
|
bug 877886 - get rid of a number of static constructors in content/ and dom/ r=smaug
|
2013-05-30 18:34:53 -04:00 |
|
David Zbarsky
|
109e1728e5
|
[Bug 879998] Remove some dead code in content/ r=Ms2ger, emk
|
2013-06-07 14:05:57 -07:00 |
|
Peter Van der Beken
|
98b9e5058e
|
Bug 877654 - Remove thisptr offset tables - Remove offset tables from non-HTMLElement objects and remove offset table macros. r=Ms2ger.
--HG--
extra : rebase_source : 6d6fbb260c564d295d33c76a1b21ffd7187eeae2
|
2013-05-21 21:59:27 +02:00 |
|