Ed Morley
|
b0477b5369
|
Backed out changeset d8636e485e85 (bug 882541)
|
2013-10-14 17:30:49 +01:00 |
Boris Zbarsky
|
57053bb972
|
Bug 882541 part 2. Fix a bug that crept in with overloading a string and a nullable number and then passing in null, due to the number conversion being conditional on the input type in that case. r=khuey
Also removes a footgun conversion operator on Nullable that was causing it to silently convert to int32_t.
|
2013-10-11 12:28:23 -04:00 |
Ehsan Akhgari
|
c8d51e9ce2
|
Bug 919341 - Minimize the #includes in xpcom/ IDL files; r=bsmedberg
|
2013-09-23 13:29:27 -04:00 |
Ehsan Akhgari
|
7233ba7103
|
Bug 918923 - Part 2: Switch to #including nsString.h in code using the internal strings API; r=bsmedberg
|
2013-09-23 13:25:00 -04:00 |
Benoit Jacob
|
ef57b5655b
|
Bug 913847 - stop needlessly including nsThreadUtils.h - r=ehsan
|
2013-09-19 09:54:39 -04:00 |
Andrea Marchesini
|
ee8268ad59
|
Bug 916094 - Assertions removed from IDBFactory::Create() when it's used in JS from chrome in IPC. r=bent
|
2013-09-19 14:45:25 +02:00 |
Wes Kocher
|
de3dfc4a8e
|
Backed out changeset 554bfe767519 (bug 913847) for leaking on a CLOSED TREE
|
2013-09-18 17:21:02 -07:00 |
Benoit Jacob
|
1b7e3c520e
|
Bug 913847 - stop needlessly including nsThreadUtils.h - r=ehsan
|
2013-09-18 18:50:32 -04:00 |
Jan Varga
|
e9492bcd36
|
Bug 785884 - Implement support for temporary storage (aka shared pool). r=ehsan, r=bent
--HG--
rename : caps/tests/mochitest/test_principal_extendedorigin_appid_appstatus.html => caps/tests/mochitest/test_principal_jarprefix_origin_appid_appstatus.html
rename : dom/quota/UsageRunnable.h => dom/quota/UsageInfo.h
|
2013-09-11 06:18:36 +02:00 |
Robert O'Callahan
|
03e7828db2
|
Bug 910989. Remove nsTHashtable::Init, fallible allocation, and MT hashtables. r=ehsan,bsmedberg
--HG--
extra : rebase_source : 0787130b1814c74bfb38dc178de94022f0b2e64e
|
2013-09-02 20:41:57 +12:00 |
Mike Hommey
|
f8bc7fa754
|
Bug 912293 - Remove now redundant boilerplate from Makefile.in. r=gps
|
2013-09-05 09:01:46 +09:00 |
Brian O'Keefe
|
d118b95a0d
|
Bug 875934 - Move LIBRARY_NAME to moz.build, batch 3; r=mshal
|
2013-08-15 09:02:09 -04: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
|
4fb1aa6786
|
Bug 883284 - Part c: Move LIBXUL_LIBRARY into moz.build (d-e); r=mshal
|
2013-08-22 08:56:00 +02:00 |
Ms2ger
|
6a7bc47591
|
Bug 906351 - Use @DEPTH@ even more; r=ted
|
2013-08-22 08:55:59 +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 |
Trevor Saunders
|
acfc9e9cd6
|
bug 905410 - remove most remaining usage of nspr atomics outside of xpcom/ r=ehsan
|
2013-08-12 05:51:49 -04:00 |
Brian O'Keefe
|
61565e4086
|
Bug 896177 - Remove useless config.mk includes; r=gps
|
2013-07-17 16:06:53 -04:00 |
Andrea Marchesini
|
af936eab73
|
Bug 888596 - Move IDBDatabase to WebIDL, r=janv
|
2013-07-31 17:48:46 +02: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 |
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
|
36673bcae2
|
Bug 884061 - Part 3f: Use NS_DECL_THREADSAFE_ISUPPORTS in dom/, r=smaug,dhylands.
--HG--
extra : rebase_source : b8eaae07c54c94c8c46c7ed4c0e226eb74584652
|
2013-07-18 21:21:20 -05: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 |
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 |
Ben Turner
|
b7c9e1cf81
|
Bug 888105 - '.DS_Store files can screw up origin initialization.' r=janv.
|
2013-06-29 19:25:15 -07:00 |
Jan Varga
|
74516b1e86
|
Bug 878703 - Cleanup usage of IO thread only objects. r=bent
|
2013-06-05 10:11:23 +02: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 |
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 |
Ben Turner
|
6f8e994c82
|
Bug 861287 - 'Integrate IndexedDB into the gecko profiler'. r=khuey.
|
2013-03-15 23:58:50 -07:00 |
Ben Turner
|
5164c7bb1b
|
Backout bug 861287 for gcc build failures.
|
2013-04-25 08:30:28 -04:00 |
Ben Turner
|
89f06e32e7
|
Bug 861287 - 'Integrate IndexedDB into the gecko profiler'. r=khuey.
|
2013-03-15 23:58:50 -07:00 |
Mike Shal
|
df7deac25b
|
Bug 846634 - Part 2: Move EXPORTS to moz.build; r=joey
|
2013-04-16 15:24:43 -04:00 |
Kyle Machulis
|
72a717a860
|
Bug 855465 - Add emacs python mode comments to moz.build files; r=gps
|
2013-04-01 11:36:59 -07:00 |
Ben Turner
|
76b0bc5465
|
Bug 856032 - 'Quota management enabled even for origins with unlimited permission granted'. r=janv.
|
2013-03-31 17:10:27 -07:00 |
Ryan VanderMeulen
|
4f1ed37be8
|
Backed out changeset 3a242f8d8298 (bug 856032) for mochitest-2 failures.
|
2013-03-30 16:15:06 -04:00 |
Ben Turner
|
a47376de61
|
Bug 856032 - 'Quota management enabled even for origins with unlimited permission granted'. r=janv.
|
2013-03-30 11:30:16 -07:00 |
Kyle Machulis
|
43628a7867
|
Backout for changeset 03452b187c14 (Bug 855465) due to bustage on a CLOSED TREE; r=qdot
|
2013-03-29 15:12:58 -07:00 |
Kyle Machulis
|
334c0800cf
|
Bug 855465 - Add emacs python mode comments to moz.build files; r=gps
--HG--
extra : rebase_source : 004a756492323e1a049586e85b3be5037159df20
|
2013-03-29 13:56:18 -07:00 |
Olli Pettay
|
3b2d758f12
|
Additional patch for Bug 767944 (Fix compilation on gcc 4.7.x), r=Ms2ger
--HG--
extra : rebase_source : be9d00ca80306dfe57ed917b588cfd30ec8eb8d0
|
2013-03-26 20:57:54 +02:00 |
Jan Varga
|
8b28e5b8f1
|
Bug 767944 - Implement a manager for centralized quota and storage handling. r=bent
|
2013-03-26 12:13:17 +01:00 |
Mike Shal
|
7ecea60097
|
Bug 844654 - Part 2: Move MODULE to moz.build; rs=gps
|
2013-03-19 11:47:00 -07:00 |
Ms2ger
|
4f5fca99bc
|
Bug 845374 - Part l: Stop including nsIDocument.h in nsContentUtils.h and fix two nits; r=khuey
|
2013-03-17 08:55:15 +01:00 |
Mike Shal
|
cd4191e248
|
Bug 818246 - Part 7: Move XPIDL_MODULE to moz.build; rs=gps
|
2013-03-11 22:00:00 -07:00 |
Gregory Szorc
|
a0e24e2250
|
Bug 784841 - Part 18k: Convert /dom; f=Ms2ger rs=khuey
|
2013-02-25 12:47:20 -08:00 |
Jan Varga
|
7fc5c78ab9
|
Bug 820715 - Move quota related pieces from IndexedDatabaseManager to QuotaManager. r=bent
--HG--
rename : dom/indexedDB/CheckQuotaHelper.cpp => dom/quota/CheckQuotaHelper.cpp
rename : dom/indexedDB/CheckQuotaHelper.h => dom/quota/CheckQuotaHelper.h
|
2012-12-19 18:45:57 +01:00 |
Jan Varga
|
6554fc16b9
|
Bug 787804 - Rewrite quota handling (eliminate test_quota.c). r=bent,asuth,vladan
|
2012-12-17 20:25:10 +01:00 |