Gian-Carlo Pascutto
|
ce50f48ae3
|
Bug 806422 - Modify and add tests for new Complete caching behavior in protocol 2.3. r=dcamp
|
2012-11-06 15:38:25 +01:00 |
|
Gian-Carlo Pascutto
|
0aba543f82
|
Bug 806422 - Do not cache Complete's across a SafeBrowsing update. r=dcamp
|
2012-11-06 15:38:16 +01:00 |
|
Gian-Carlo Pascutto
|
0e62e9d40f
|
Bug 807852 - Position of real request is predictable in Completion requests. r=dcamp
|
2012-11-03 01:53:11 +01:00 |
|
Gian-Carlo Pascutto
|
877d7f8356
|
Bug 807822 - No noise added to completion request in some circumstances. r=dcamp
|
2012-11-03 01:53:11 +01:00 |
|
Gian-Carlo Pascutto
|
614e514264
|
Bug 807847 - Noise entries are erroneously entered into the misscache. r=dcamp
|
2012-11-03 01:53:10 +01:00 |
|
Gian-Carlo Pascutto
|
027c793b65
|
Bug 782106 - Disable the per-client randomization in the url-classifier. r=dcamp
|
2012-11-03 01:53:10 +01:00 |
|
Matt Joras
|
aa4d2cb746
|
Bug 798033 - Removes 'using namespace' from toolkit headers - r=bsmedberg
|
2012-11-01 18:09:22 -04:00 |
|
Kyle Huey
|
76a2832eea
|
Bug 798491: Add an option to stick all chrome JSMs/JS components in the same compartment. r=mrbkap,philikon
|
2012-10-31 09:13:28 -07:00 |
|
Vicamo Yang
|
ea784216bd
|
Backout 67cb43bb8865: Breaks B2G Marionette
|
2012-10-31 16:35:11 +08:00 |
|
Kyle Huey
|
c82a2d6fea
|
Bug 798491: Add an option to stick all chrome JSMs/JS components in the same compartment. r=mrbkap,philikon
|
2012-10-30 12:28:11 -07:00 |
|
Ed Morley
|
c34b7d9377
|
Backout a145ded68994, e0cf397089ec & 1545e91c658e (bug 798491) for bustage on a CLOSED TREE
|
2012-10-30 17:02:31 +00:00 |
|
Kyle Huey
|
8078ab712e
|
Bug 798491: Add an option to stick all chrome JSMs/JS components in the same compartment. r=mrbkap,philikon
|
2012-10-30 08:26:12 -07:00 |
|
Justin Dolske
|
8fb9ae0664
|
Bug 778608 - Move SafeBrowsing.jsm to toolkit. r=gavin
|
2012-10-29 17:26:41 -07:00 |
|
Gian-Carlo Pascutto
|
c633d6b975
|
Bug 797302 - crash in mozilla::safebrowsing::Classifier::Check. r=dcamp
|
2012-10-23 09:57:18 +02:00 |
|
Isaac Aggrey
|
50d6240e45
|
Bug 794510: Part 2: Use more stdint types instead of protypes.h types; r=ehsan
|
2012-10-11 18:38:04 -05:00 |
|
Gian-Carlo Pascutto
|
74e1f771f7
|
Bug 795281. r=bholley
|
2012-10-18 13:52:03 +02:00 |
|
Trevor Saunders
|
53e4e1f193
|
bug 798595 - remove useless prmem.h includes r=ehsan
|
2012-10-04 02:14:06 -04:00 |
|
Gian-Carlo Pascutto
|
e83788e743
|
Bug 727370 - Fix typo that crept in while rebasing. r=benjamin
|
2012-09-28 19:00:20 +02:00 |
|
Gian-Carlo Pascutto
|
bce21c1450
|
Bug 727370 - Small cleanups in HashStore. r=dcamp
|
2012-09-28 18:31:19 +02:00 |
|
Gian-Carlo Pascutto
|
1293a5c009
|
Bug 727370 - Recover correctly from a Reset during an update. r=dcamp
|
2012-09-28 18:31:19 +02:00 |
|
Gian-Carlo Pascutto
|
48c6f466f8
|
Bug 727370 - Improve HashStore checksumming performance. r=dcamp
|
2012-09-28 18:31:19 +02:00 |
|
Gian-Carlo Pascutto
|
a04ed76212
|
Bug 727370 - Make SafeBrowsing updates atomic transactions. r=dcamp
|
2012-09-28 18:31:18 +02:00 |
|
Isaac Aggrey
|
990e90e88a
|
Bug 791906: Replace NSPR integer limit constants with stdint ones; r=ehsan
|
2012-09-28 01:57:33 -05:00 |
|
Makoto Kato
|
8696ddea08
|
Bug 784912 - nsIStreamListener.onDataAvailable should handle 64-bit offset. r=honza
|
2012-09-06 11:41:02 +09:00 |
|
Randell Jesup
|
3b4961b603
|
Bug 773151: Convert nsCAutoString->nsAutoCString CLOSED TREE r=bsmedberg
|
2012-09-01 22:35:17 -04:00 |
|
Ehsan Akhgari
|
243c878d26
|
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 |
|
Aryeh Gregor
|
fb2314e966
|
Bug 782252 - Cast some nsresult to PRUint32; r=ehsan
|
2012-08-09 11:36:40 +03:00 |
|
Gian-Carlo Pascutto
|
f59dcebe9c
|
Bug 673470 - Update the new SafeBrowsing code to MPL 2.0. r=dcamp
|
2012-08-15 09:10:56 +02:00 |
|
Gian-Carlo Pascutto
|
1fafa42aac
|
Bug 673470 - Skip chunks we already have during merges. r=dcamp
|
2012-08-15 09:10:39 +02:00 |
|
Gian-Carlo Pascutto
|
36e135e1d7
|
Bug 673470 - Simplify PrefixSet by removing (unneeded) thread safety. r=dcamp
|
2012-08-15 09:10:24 +02:00 |
|
Gian-Carlo Pascutto
|
4b70e3b4c2
|
Bug 738533 - Replace NS_QuickSort use by qsort. r=dcamp
|
2012-08-15 09:10:07 +02:00 |
|
Gian-Carlo Pascutto
|
ad6180560b
|
Bug 750625 - crash in nsUrlClassifierPrefixSet::GetPrefixes. r=dcamp
|
2012-08-15 09:09:53 +02:00 |
|
Gian-Carlo Pascutto
|
b3a25c5ecf
|
Bug 673470 - Remove some unneeded PromiseFlatCString. r=dcamp
|
2012-08-15 09:09:40 +02:00 |
|
Gian-Carlo Pascutto
|
7c3b38587d
|
Bug 673470 - Make the PrefixSet/LookupCache construction infallible again. r=dcamp f=jlebar
|
2012-08-15 09:09:25 +02:00 |
|
Gian-Carlo Pascutto
|
60f9f32b60
|
Bug 673470 - Expire SubPrefixes that can't do anything immediately. r=dcamp
|
2012-08-15 09:08:51 +02:00 |
|
Gian-Carlo Pascutto
|
96918bd4cb
|
Bug 673470 - Don't resort if not needed. Fix comparator. Cleanups. r=dcamp
|
2012-08-15 09:08:37 +02:00 |
|
Gian-Carlo Pascutto
|
420a4b2679
|
Bug 673470 - Fix wrong order of arguments to KeyedHash function. r=dcamp
|
2012-08-15 09:08:23 +02:00 |
|
Gian-Carlo Pascutto
|
af726560d8
|
Bug 673470 - Fix order of SubPrefix Knockouts. r=dcamp
|
2012-08-15 09:08:09 +02:00 |
|
Gian-Carlo Pascutto
|
e70f854939
|
Bug 673470 - Remove unused compare functions. r=dcamp
|
2012-08-15 09:07:56 +02:00 |
|
Gian-Carlo Pascutto
|
9edc9e38c8
|
Bug 673470 - Fix inconsistent variable naming. r=dcamp
|
2012-08-15 09:07:36 +02:00 |
|
Gian-Carlo Pascutto
|
2cccb5a0b0
|
Bug 673470 - Fix format description in HashStore.cpp. r=dcamp
|
2012-08-15 09:07:23 +02:00 |
|
Gian-Carlo Pascutto
|
6b5d1b65c2
|
Bug 768871 - Provide an option to disable per-client randomization. r=dcamp
|
2012-08-15 09:07:10 +02:00 |
|
Gian-Carlo Pascutto
|
4bd7da41de
|
Bug 730247 - Use byteslice coding for SafeBrowsing data. r=dcamp
|
2012-08-15 09:06:54 +02:00 |
|
Gian-Carlo Pascutto
|
e1497c253a
|
Bug 729640 - Fix broken UrlClassifier assertion. r=dcamp
|
2012-08-15 09:05:32 +02:00 |
|
Gian-Carlo Pascutto
|
6301b08636
|
Bug 726002 - Clear some big nsTArrays as early as possible in updates. r=dcamp
|
2012-08-15 09:05:18 +02:00 |
|
Gian-Carlo Pascutto
|
f9e33f32b0
|
Bug 726002 - More OOM handling in UrlClassifier. r=dcamp
|
2012-08-15 09:05:08 +02:00 |
|
Gian-Carlo Pascutto
|
9b1aa19356
|
Bug 725597 - SafeBrowsing fails to update persistent PrefixSet on Windows. r=dcamp
|
2012-08-15 09:04:51 +02:00 |
|
Gian-Carlo Pascutto
|
6cb825e03c
|
Bug 673470 - Optimize input buffer size. Cache active tables. r=dcamp
|
2012-08-15 09:04:31 +02:00 |
|
Gian-Carlo Pascutto
|
1c0ff29874
|
Bug 673470 - Replace the sqlite safeb store with a flat file. r=dcamp
|
2012-08-15 09:04:19 +02:00 |
|
Mark Capella
|
60aca41c40
|
Bug 772272 - Remove do_load_httpd_js from xpcshell tests, Toolkits, r=ted, f=gps
|
2012-08-14 10:06:12 -04:00 |
|