Ms2ger
|
db8e00e85f
|
Bug 904831 - Part c: Move conditional MSVC_ENABLE_PGO definitions into moz.build and remove empty makefiles; r=mshal
|
2013-08-22 08:56:01 +02:00 |
|
Ms2ger
|
bdfaa84f5b
|
Bug 904831 - Part b: Move unconditional MSVC_ENABLE_PGO definitions into moz.build; r=gps
|
2013-08-22 08:56:01 +02:00 |
|
Ms2ger
|
49f603cd4d
|
Bug 883284 - Part e: Move LIBXUL_LIBRARY into moz.build (k-o); r=ted
|
2013-08-22 08:56:00 +02:00 |
|
Ms2ger
|
4807f1c86c
|
Bug 882859 - Part b: Move FAIL_ON_WARNINGS into moz.build; r=joey+gps
|
2013-08-22 08:55:59 +02:00 |
|
Adrian Lungu
|
74e17cd3ac
|
Bug 882516 - Use AF_UNSPEC cached entries for AF_INET and AF_INET6 DNS requests, if possible. r=sworkman
|
2013-08-16 11:49:57 -07:00 |
|
Phil Ringnalda
|
3b12a1efb9
|
Back out cb68113d5052 (bug 901195) for xpcshell bustage
CLOSED TREE
|
2013-08-14 21:07:19 -07:00 |
|
Simone Carletti
|
74389ca128
|
Bug 902785 - add cloudcontrol.com to PSL. r=gerv. DONTBUILD.
|
2013-08-15 02:25:38 +01:00 |
|
Simone Carletti
|
b4ce3f1eaa
|
Bug 901195 - update .sv and .om in PSL. r=gerv.
|
2013-08-15 02:23:47 +01:00 |
|
Simone Carletti
|
dc2e1fcf1d
|
Bug 901193 - Add ro.com to PSL. r=gerv.
|
2013-08-15 02:22:57 +01:00 |
|
Ms2ger
|
e358f27301
|
Bug 901063 - Remove HB_DONT_DEFINE_STDINT defines; r=gps
These defines have been unnecessary since we removed mozilla/StandardInteger.h.
The upstream code will default to stdint.h typedefs without them.
|
2013-08-14 08:57:22 +02:00 |
|
Ms2ger
|
a4e67abf5e
|
Bug 897921 - Remove some dead assignments in makefiles; r=mshal
|
2013-08-02 09:03:55 +02:00 |
|
Simon Montagu
|
ca2df3f279
|
Only test IDN nodes against kMaxDNSNodeLen on string-prepped IDNs that we're going to send to DNS, not the Unicode form for display only. Bug 892370, r=honzab
--HG--
rename : netwerk/test/unit/test_bug722299.js => netwerk/test/unit/test_idn_urls.js
|
2013-07-29 22:32:37 -07:00 |
|
pchang9@cs.wisc.edu
|
98e52ccb66
|
bug 898221 - search backwards for the last punycode delimiter instead of forwards. r=hurley
|
2013-07-30 13:01:11 -07:00 |
|
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 |
|
Joshua Cranmer
|
b82a7849fb
|
Bug 884061 - Part 4: Remove nsAtomicRefcnt.h, r=jlebar
--HG--
extra : rebase_source : ce24ab345baa48104328e3c101b7266a31e81870
|
2013-07-11 15:21:45 -05:00 |
|
Joshua Cranmer
|
37465bc6bd
|
Bug 884061 - Part 3q: Use NS_DECL_THREADSAFE_ISUPPORTS in netwerk/, r=macmanus
--HG--
extra : rebase_source : d029f73a1f27896c142f76dce263dd3542763b18
|
2013-07-18 21:24:13 -05:00 |
|
Patrick McManus
|
db05cbea1d
|
bug 887753 - server not found after reconnecting to etherpad r=sworkman
|
2013-07-19 18:40:00 -04:00 |
|
Arnaud Sourioux
|
38d6c0d455
|
Bug 883360 - Remove bool operator and nsMainThreadPtrHolder conversion. r=bsmedberg
|
2013-07-19 12:53:12 -04:00 |
|
Ehsan Akhgari
|
192bc42d5e
|
Bug 895141 - Remove useless prlong.h inclusions from the tree; r=jcranmer
|
2013-07-18 12:06:38 -04:00 |
|
Benoit Girard
|
be559fe75a
|
Bug 892861 - Remove useless -D flags 'IMPL_THEBES,_IMPL_NS_GFX,...'. r=glandium
|
2013-07-12 08:56:54 -04: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 |
|
Gervase Markham
|
2d8a4ce521
|
Bug 864704 - re-add csiro.au to PSL. DONTBUILD.
|
2013-07-11 13:39:16 +01:00 |
|
Simone Carletti
|
0f072e70f7
|
Bug 880662 - Add fastly.net to PSL. r=gerv. DONTBUILD.
--HG--
extra : rebase_source : b1603d10b5ecd5e7092d89b4dc6332ffe89cb5f7
|
2013-07-11 13:36:41 +01:00 |
|
Trevor Saunders
|
2af42ae713
|
bug 887854 - remove most useage of pratom.h r=mounir, mcmanus, jrmuizel
|
2013-06-16 03:09:07 -04:00 |
|
Josh Matthews
|
635646f106
|
Bug 887191 - Force wrapped JS listeners to proxy callbacks to the main thread if no target is specified. r=mcmanus
|
2013-06-26 15:54:05 +01:00 |
|
Catalin Iacob
|
6f4758d23e
|
Bug 798914 (part 5) - Use newly introduced mozilla::MallocSizeOf instead of nsMallocSizeOfFun. r=njn.
--HG--
extra : rebase_source : fc472490dd978d165f02f77ed37f07aed6e5bb61
|
2013-06-23 14:03:39 +02:00 |
|
Josh Matthews
|
6b86896e0b
|
Bug 883495 - Avoid releasing a scriptable DNS listener off the main thread. r=mcmanus
|
2013-06-20 09:18:16 +02: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 |
|
Phil Ringnalda
|
5b70eb297b
|
Back out c50503ce8669 (bug 883495) for still leaking
CLOSED TREE
|
2013-06-19 20:20:52 -07:00 |
|
Josh Matthews
|
af14644cb6
|
Bug 883495 - Avoid releasing a scriptable DNS listener off the main thread. r=mcmanus
|
2013-06-20 02:33:57 +02:00 |
|
Josh Matthews
|
18d8acd4f5
|
Backed out changeset 5a3dc3d31890 (bug 883495)
|
2013-06-19 18:16:04 +02:00 |
|
Josh Matthews
|
2b7b41337c
|
Bug 883495 - Avoid releasing a scriptable DNS listener off the main thread. r=mcmanus
|
2013-06-19 16:28:33 +02:00 |
|
Ryan VanderMeulen
|
6d0b75b51f
|
Backed out changeset fb43bd87db39 (bug 883495) for mass carnage of a CLOSED TREE.
|
2013-06-18 13:02:40 -04:00 |
|
Josh Matthews
|
8a683d55a4
|
Bug 883495 - Avoid releasing a scriptable DNS listener off the main thread. r=mcmanus
|
2013-06-16 11:56:15 +01:00 |
|
Simone Carletti
|
88a6b86ef0
|
Bug 859521 - Add AWS EC2 to PSL. r=gerv. DONTBUILD.
--HG--
extra : rebase_source : 9a4ac79ac4e03c2b85bf2f11c1c5366770bb1b65
|
2013-06-06 16:00:03 +01:00 |
|
Mike Shal
|
5169c0a913
|
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 |
|
Joey Armstrong
|
2c39cbb922
|
bug 870406: move to moz.build (config batch #1) r=mshal
|
2013-05-24 17:21:14 -07:00 |
|
Ted Mielczarek
|
3cfd62c3d2
|
bug 871712 - make MSVC PGO opt-in per-directory, and opt-in in the directories that matter. r=glandium
|
2013-05-16 09:33:26 -04:00 |
|
Steve Workman
|
7be502c247
|
Bug 870652 - Add null ptr check in nsDNSRecord::ReportUnusable to avoid crashing r=mcmanus
|
2013-05-14 16:35:18 -07:00 |
|
Ryan VanderMeulen
|
e9ffe5f5ce
|
Backed out changeset f8a861253c57 (bug 859521) due to bustage.
|
2013-05-14 12:49:26 -04:00 |
|
Simone Carletti
|
801403fa1b
|
Bug 868331 - Add Heroku CloudFront to PSL. r=gerv.
|
2013-05-14 17:38:11 +01:00 |
|
Simone Carletti
|
058af8a784
|
Bug 859521 - Add AWS EC2 to PSL. r=gerv.
|
2013-05-14 17:35:44 +01:00 |
|
Simone Carletti
|
232aa998c6
|
Bug 863169 - Add GitHub Pages to PSL. r=gerv.
|
2013-04-23 11:51:10 +01:00 |
|
Simone Carletti
|
f46cf28679
|
Bug 859234 - Add AWS Elastic Beanstalk to PSL. r=gerv.
|
2013-04-23 11:49:36 +01:00 |
|
Mike Shal
|
df7deac25b
|
Bug 846634 - Part 2: Move EXPORTS to moz.build; r=joey
|
2013-04-16 15:24:43 -04:00 |
|
Simon Montagu
|
26d038858d
|
Exclude U+30FB KATAKANA MIDDLE DOT from the non-recommended characters that force IDN labels to be displayed as punycode. Bug 857490, r=jfkthame
|
2013-04-09 05:47:03 -07:00 |
|
Patrick McManus
|
29a49dbb09
|
bug 857291 - fix 807678 regression of DNS::GetCanonicalName r=josh
|
2013-04-08 12:02:41 -04:00 |
|
Simon Montagu
|
8e35c82d4a
|
Exclude U+30FB KATAKANA MIDDLE DOT from the non-recommended characters that force IDN labels to be displayed as punycode. Bug 857490, r=jfkthame
|
2013-04-08 01:36:54 -07:00 |
|
Simon Montagu
|
1c35ddee88
|
Disable the check for mixed Simplified and Traditional Chinese characters when determining whether to display IDN labels as unicode or punycode. Bug 857481, r=honzab
|
2013-04-08 01:36:52 -07:00 |
|