Aidin Gharibnavaz 
								
							 
						 
						
							
							
							
							
								
							
							
								69cf7e035f 
								
							 
						 
						
							
							
								
								Bug 1164581 - Adding an overload for NS_ProxyRelease that accepts already_AddRefed, and removing all the others. r=bobbyholley  
							
							... 
							
							
							
							--HG--
extra : rebase_source : 3c6bba6613a14e48239d302bdd0f7fe2e322265d 
							
						 
						
							2016-02-07 10:56:00 +01:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Wes Kocher 
								
							 
						 
						
							
							
							
							
								
							
							
								e060c6dced 
								
							 
						 
						
							
							
								
								Backed out changeset 24af6caa9bba (bug 1219482) to hopefully fix the intermittent hazard failures CLOSED TREE  
							
							... 
							
							
							
							--HG--
extra : commitid : ETz5wi5nzdH 
							
						 
						
							2016-01-29 10:15:30 -08:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									sajitk 
								
							 
						 
						
							
							
							
							
								
							
							
								aff6f586b9 
								
							 
						 
						
							
							
								
								Bug 1219482 - Replace PRLogModuleInfo with LazyLogModule in toolkit subdirectory. r=erahm  
							
							... 
							
							
							
							--HG--
extra : rebase_source : 71c02b7294a95ecba7876b0372a0dee0ea05b4ed 
							
						 
						
							2016-01-28 10:37:00 -05:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									David Rajchenbach-Teller 
								
							 
						 
						
							
							
							
							
								
							
							
								583ca7286d 
								
							 
						 
						
							
							
								
								Bug  1224374 - Profiler labels for the top 26-100 chrome hangs;r=BenWa  
							
							... 
							
							
							
							--HG--
extra : rebase_source : 39e94507c0288863e495322a6899ff009840870d 
							
						 
						
							2016-01-15 11:38:03 +01:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Sebastian Hengst 
								
							 
						 
						
							
							
							
							
								
							
							
								d8d4a2d1a5 
								
							 
						 
						
							
							
								
								Backed out 2 changesets (bug  1224374) for Windows bustage. r=bustage on a CLOSED TREE  
							
							... 
							
							
							
							Backed out changeset 5f458e6e4997 (bug 12243741224374 
							
						 
						
							2016-01-19 21:30:41 +01:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									David Rajchenbach-Teller 
								
							 
						 
						
							
							
							
							
								
							
							
								2d53758d08 
								
							 
						 
						
							
							
								
								Bug  1224374 - Profiler labels for the top 26-100 chrome hangs;r=BenWa  
							
							... 
							
							
							
							--HG--
extra : rebase_source : 51d39d6f88bf58ccb29f5897c3dbbe71007ee842 
							
						 
						
							2016-01-15 11:38:03 +01:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Francois Marier 
								
							 
						 
						
							
							
							
							
								
							
							
								67506f65a6 
								
							 
						 
						
							
							
								
								Bug 1216723 - Add a new -forbid- Safe Browsing list type. r=gcp,r=smaug  
							
							
							
						 
						
							2015-11-20 20:24:50 -08:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Gian-Carlo Pascutto 
								
							 
						 
						
							
							
							
							
								
							
							
								760f31a46e 
								
							 
						 
						
							
							
								
								Bug 1100338 - Do not consider noise for Completion matches. Remove dead code. r=francois  
							
							
							
						 
						
							2015-07-06 04:24:00 +02:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Nathan Froyd 
								
							 
						 
						
							
							
							
							
								
							
							
								01583602a9 
								
							 
						 
						
							
							
								
								Bug 1207245 - part 6 - rename nsRefPtr<T> to RefPtr<T>; r=ehsan; a=Tomcat  
							
							... 
							
							
							
							The bulk of this commit was generated with a script, executed at the top
level of a typical source code checkout.  The only non-machine-generated
part was modifying MFBT's moz.build to reflect the new naming.
CLOSED TREE makes big refactorings like this a piece of cake.
 # The main substitution.
find . -name '*.cpp' -o -name '*.cc' -o -name '*.h' -o -name '*.mm' -o -name '*.idl'| \
    xargs perl -p -i -e '
 s/nsRefPtr\.h/RefPtr\.h/g; # handle includes
 s/nsRefPtr ?</RefPtr</g;   # handle declarations and variables
'
 # Handle a special friend declaration in gfx/layers/AtomicRefCountedWithFinalize.h.
perl -p -i -e 's/::nsRefPtr;/::RefPtr;/' gfx/layers/AtomicRefCountedWithFinalize.h
 # Handle nsRefPtr.h itself, a couple places that define constructors
 # from nsRefPtr, and code generators specially.  We do this here, rather
 # than indiscriminantly s/nsRefPtr/RefPtr/, because that would rename
 # things like nsRefPtrHashtable.
perl -p -i -e 's/nsRefPtr/RefPtr/g' \
     mfbt/nsRefPtr.h \
     xpcom/glue/nsCOMPtr.h \
     xpcom/base/OwningNonNull.h \
     ipc/ipdl/ipdl/lower.py \
     ipc/ipdl/ipdl/builtin.py \
     dom/bindings/Codegen.py \
     python/lldbutils/lldbutils/utils.py
 # In our indiscriminate substitution above, we renamed
 # nsRefPtrGetterAddRefs, the class behind getter_AddRefs.  Fix that up.
find . -name '*.cpp' -o -name '*.h' -o -name '*.idl' | \
    xargs perl -p -i -e 's/nsRefPtrGetterAddRefs/RefPtrGetterAddRefs/g'
if [ -d .git ]; then
    git mv mfbt/nsRefPtr.h mfbt/RefPtr.h
else
    hg mv mfbt/nsRefPtr.h mfbt/RefPtr.h
fi
--HG--
rename : mfbt/nsRefPtr.h => mfbt/RefPtr.h 
							
						 
						
							2015-10-18 01:24:48 -04:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Gian-Carlo Pascutto 
								
							 
						 
						
							
							
							
							
								
							
							
								31cf95e1cd 
								
							 
						 
						
							
							
								
								Bug 1175562 - Persist last update time for SafeBrowsing. r=francois  
							
							
							
						 
						
							2015-10-06 13:53:07 +02:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Francois Marier 
								
							 
						 
						
							
							
							
							
								
							
							
								aeb9dbcf18 
								
							 
						 
						
							
							
								
								Bug 1203347 - Increase Safe Browsing debug logging around gethash (C++). r=gcp  
							
							
							
						 
						
							2015-09-14 18:03:56 -07:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Francois Marier 
								
							 
						 
						
							
							
							
							
								
							
							
								ef41c4971f 
								
							 
						 
						
							
							
								
								Bug 1203347 - Increase Safe Browsing debug logging around downloads. r=gcp  
							
							
							
						 
						
							2015-09-14 18:03:48 -07:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Francois Marier 
								
							 
						 
						
							
							
							
							
								
							
							
								e5ccece7d7 
								
							 
						 
						
							
							
								
								Bug 1141352 - add a pairwise allowlist to tracking protection. r=gcp  
							
							... 
							
							
							
							--HG--
rename : toolkit/components/url-classifier/tests/mochitest/test_privatebrowsing_trackingprotection.html => toolkit/components/url-classifier/tests/mochitest/test_trackingprotection_whitelist.html
rename : toolkit/components/url-classifier/tests/mochitest/classifiedAnnotatedPBFrame.html => toolkit/components/url-classifier/tests/mochitest/whitelistFrame.html 
							
						 
						
							2015-08-07 13:08:22 -07:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Francois Marier 
								
							 
						 
						
							
							
							
							
								
							
							
								741f8fa206 
								
							 
						 
						
							
							
								
								Bug 1180323 - Only look at TP table before cancelling speculative connections. r=gcp  
							
							... 
							
							
							
							--HG--
extra : transplant_source : w/%18%F8VL%0B%F4%D2%2ApY%03%D8%26%B2%26A%A1%13 
							
						 
						
							2015-07-11 19:19:29 +02:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Dragana Damjanovic 
								
							 
						 
						
							
							
							
							
								
							
							
								7987d2203e 
								
							 
						 
						
							
							
								
								Bug 905127 - Part 2 - remove unnecessary nsNetUtil.h includes r=jduell  
							
							
							
						 
						
							2015-07-06 07:55:00 +02:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Francois Marier 
								
							 
						 
						
							
							
							
							
								
							
							
								f3ff8f21dc 
								
							 
						 
						
							
							
								
								Bug 1157081 - Make tracking protection work when malware and phishing protections are disabled. r=sworkman  
							
							... 
							
							
							
							--HG--
rename : toolkit/components/url-classifier/tests/mochitest/test_privatebrowsing_trackingprotection.html => toolkit/components/url-classifier/tests/mochitest/test_trackingprotection_bug1157081.html 
							
						 
						
							2015-06-11 21:48:17 +12:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Eric Rahm 
								
							 
						 
						
							
							
							
							
								
							
							
								75c4bebb79 
								
							 
						 
						
							
							
								
								Bug 1165515 - Part 13-2: Replace usage of PRLogModuleLevel and PR_LOG_*. rs=froydnj  
							
							... 
							
							
							
							This is straightforward mapping of PR_LOG levels to their LogLevel
counterparts:
  PR_LOG_ERROR   -> LogLevel::Error
  PR_LOG_WARNING -> LogLevel::Warning
  PR_LOG_WARN    -> LogLevel::Warning
  PR_LOG_INFO    -> LogLevel::Info
  PR_LOG_DEBUG   -> LogLevel::Debug
  PR_LOG_NOTICE  -> LogLevel::Debug
  PR_LOG_VERBOSE -> LogLevel::Verbose
Instances of PRLogModuleLevel were mapped to a fully qualified
mozilla::LogLevel, instances of PR_LOG levels in #defines were mapped to a
fully qualified mozilla::LogLevel::* level, and all other instances were
mapped to us a shorter format of LogLevel::*.
Bustage for usage of the non-fully qualified LogLevel were fixed by adding
|using mozilla::LogLevel;| where appropriate. 
							
						 
						
							2015-06-03 15:25:57 -07:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Eric Rahm 
								
							 
						 
						
							
							
							
							
								
							
							
								f50b813989 
								
							 
						 
						
							
							
								
								Bug 1165515 - Part 3: Convert PR_LOG_TEST to MOZ_LOG_TEST. r=froydnj  
							
							
							
						 
						
							2015-06-03 15:22:28 -07:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Carsten "Tomcat" Book 
								
							 
						 
						
							
							
							
							
								
							
							
								5471309381 
								
							 
						 
						
							
							
								
								Backed out 14 changesets (bug 1165515) for linux x64 e10s m2 test failures  
							
							... 
							
							
							
							Backed out changeset d68dcf2ef372 (bug 1165515)
Backed out changeset 7c3b45a47811 (bug 1165515)
Backed out changeset b668b617bef2 (bug 1165515)
Backed out changeset d0916e1283a2 (bug 1165515)
Backed out changeset ac4dc7489942 (bug 1165515)
Backed out changeset e9632ce8bc65 (bug 1165515)
Backed out changeset c16d215cc7e4 (bug 1165515)
Backed out changeset e4d474f3c51a (bug 1165515)
Backed out changeset d87680bf9f7c (bug 1165515)
Backed out changeset b3c0a45ba99e (bug 1165515)
Backed out changeset 9370fa197674 (bug 1165515)
Backed out changeset 50970d668ca1 (bug 1165515)
Backed out changeset ffa4eb6d24b9 (bug 1165515)
Backed out changeset 5fcf1203cc1d (bug 1165515)
--HG--
extra : rebase_source : 6fb850d063cbabe738f97f0380302153e3eae97a 
							
						 
						
							2015-06-02 13:05:56 +02:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Eric Rahm 
								
							 
						 
						
							
							
							
							
								
							
							
								a9afd68cef 
								
							 
						 
						
							
							
								
								Bug 1165515 - Part 13-2: Replace usage of PRLogModuleLevel and PR_LOG_*. rs=froydnj  
							
							... 
							
							
							
							This is straightforward mapping of PR_LOG levels to their LogLevel
counterparts:
  PR_LOG_ERROR   -> LogLevel::Error
  PR_LOG_WARNING -> LogLevel::Warning
  PR_LOG_WARN    -> LogLevel::Warning
  PR_LOG_INFO    -> LogLevel::Info
  PR_LOG_DEBUG   -> LogLevel::Debug
  PR_LOG_NOTICE  -> LogLevel::Debug
  PR_LOG_VERBOSE -> LogLevel::Verbose
Instances of PRLogModuleLevel were mapped to a fully qualified
mozilla::LogLevel, instances of PR_LOG levels in #defines were mapped to a
fully qualified mozilla::LogLevel::* level, and all other instances were
mapped to us a shorter format of LogLevel::*.
Bustage for usage of the non-fully qualified LogLevel were fixed by adding
|using mozilla::LogLevel;| where appropriate. 
							
						 
						
							2015-06-01 22:17:33 -07:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Eric Rahm 
								
							 
						 
						
							
							
							
							
								
							
							
								141e0ff4a2 
								
							 
						 
						
							
							
								
								Bug 1165515 - Part 3: Convert PR_LOG_TEST to MOZ_LOG_TEST. r=froydnj  
							
							
							
						 
						
							2015-06-01 22:17:19 -07:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Wes Kocher 
								
							 
						 
						
							
							
							
							
								
							
							
								4e9f80ed2e 
								
							 
						 
						
							
							
								
								Backed out 14 changesets (bug 1165515) for b2g mochitest-6 permafail CLOSED TREE  
							
							... 
							
							
							
							Backed out changeset 9b97e2aa2ed9 (bug 1165515)
Backed out changeset 150606c022a2 (bug 1165515)
Backed out changeset 4e875a488349 (bug 1165515)
Backed out changeset 467e7feeb546 (bug 1165515)
Backed out changeset d6b6cc373197 (bug 1165515)
Backed out changeset 0615265b593c (bug 1165515)
Backed out changeset fafd1dce9f08 (bug 1165515)
Backed out changeset d1df869245f9 (bug 1165515)
Backed out changeset 6876a7c63611 (bug 1165515)
Backed out changeset b7841c94a9a3 (bug 1165515)
Backed out changeset e5e3617f7c73 (bug 1165515)
Backed out changeset 39be3db95978 (bug 1165515)
Backed out changeset 0ec74176f8de (bug 1165515)
Backed out changeset 5b928dd10d71 (bug 1165515) 
							
						 
						
							2015-06-01 17:57:58 -07:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Eric Rahm 
								
							 
						 
						
							
							
							
							
								
							
							
								f82c0e7caf 
								
							 
						 
						
							
							
								
								Bug 1165515 - Part 13-2: Replace usage of PRLogModuleLevel and PR_LOG_*. rs=froydnj  
							
							... 
							
							
							
							This is straightforward mapping of PR_LOG levels to their LogLevel
counterparts:
  PR_LOG_ERROR   -> LogLevel::Error
  PR_LOG_WARNING -> LogLevel::Warning
  PR_LOG_WARN    -> LogLevel::Warning
  PR_LOG_INFO    -> LogLevel::Info
  PR_LOG_DEBUG   -> LogLevel::Debug
  PR_LOG_NOTICE  -> LogLevel::Debug
  PR_LOG_VERBOSE -> LogLevel::Verbose
Instances of PRLogModuleLevel were mapped to a fully qualified
mozilla::LogLevel, instances of PR_LOG levels in #defines were mapped to a
fully qualified mozilla::LogLevel::* level, and all other instances were
mapped to us a shorter format of LogLevel::*.
Bustage for usage of the non-fully qualified LogLevel were fixed by adding
|using mozilla::LogLevel;| where appropriate. 
							
						 
						
							2015-06-01 14:31:01 -07:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Eric Rahm 
								
							 
						 
						
							
							
							
							
								
							
							
								dc090e3fe5 
								
							 
						 
						
							
							
								
								Bug 1165515 - Part 3: Convert PR_LOG_TEST to MOZ_LOG_TEST. r=froydnj  
							
							
							
						 
						
							2015-06-01 14:31:00 -07:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Eric Rahm 
								
							 
						 
						
							
							
							
							
								
							
							
								3925a960aa 
								
							 
						 
						
							
							
								
								Bug 1165515 - Part 1: Convert PR_LOG to MOZ_LOG. r=froydnj  
							
							
							
						 
						
							2015-05-21 13:22:04 -07:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Eric Rahm 
								
							 
						 
						
							
							
							
							
								
							
							
								4879ae86f4 
								
							 
						 
						
							
							
								
								Bug 1165518 - Part 2: Replace prlog.h with Logging.h. rs=froydnj  
							
							
							
						 
						
							2015-05-19 11:15:34 -07:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Eric Rahm 
								
							 
						 
						
							
							
							
							
								
							
							
								bc7a3b2ae7 
								
							 
						 
						
							
							
								
								Bug 1164556 - Part 1: Remove instances of #ifdef PR_LOGGING in toolkit. r=froydnj  
							
							... 
							
							
							
							PR_LOGGING is now always defined, we can remove #ifdefs checking for it. 
							
						 
						
							2015-05-14 10:13:23 -07:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Francois Marier 
								
							 
						 
						
							
							
							
							
								
							
							
								17b87281f2 
								
							 
						 
						
							
							
								
								Bug 1147212 - Add support for goog-unwanted-shavar. r=gcp,r=matej,r=smaug  
							
							... 
							
							
							
							--HG--
rename : toolkit/components/url-classifier/tests/mochitest/evilWorker.js => toolkit/components/url-classifier/tests/mochitest/unwantedWorker.js
extra : rebase_source : efe09564160fb2fcb1adb5f6599183f053268c40 
							
						 
						
							2015-04-22 21:01:37 +12:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Andrea Marchesini 
								
							 
						 
						
							
							
							
							
								
							
							
								e6f385fb3d 
								
							 
						 
						
							
							
								
								Bug 1148527 - Indentation fix after bug 1145631, r=ehsan  
							
							
							
						 
						
							2015-03-27 18:52:19 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Wes Kocher 
								
							 
						 
						
							
							
							
							
								
							
							
								5b6f65bcdb 
								
							 
						 
						
							
							
								
								Merge m-c to inbound a=merge CLOSED TREE  
							
							
							
						 
						
							2015-03-26 17:46:35 -07:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Francois Marier 
								
							 
						 
						
							
							
							
							
								
							
							
								25d768c5d8 
								
							 
						 
						
							
							
								
								Bug 1138979 - Pref to turn TP on when in Private Browsing mode. r=mmc, r=ehsan  
							
							
							
						 
						
							2015-03-24 14:10:00 -04:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Ehsan Akhgari 
								
							 
						 
						
							
							
							
							
								
							
							
								883849ee32 
								
							 
						 
						
							
							
								
								Bug 1145631 - Part 1: Replace MOZ_OVERRIDE and MOZ_FINAL with override and final in the tree; r=froydnj  
							
							... 
							
							
							
							This patch was automatically generated using the following script:
function convert() {
echo "Converting $1 to $2..."
find . \
       ! -wholename "*/.git*" \
       ! -wholename "obj-ff-dbg*" \
         -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 MOZ_OVERRIDE override
convert MOZ_FINAL final 
							
						 
						
							2015-03-21 12:28:04 -04:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Monica Chew 
								
							 
						 
						
							
							
							
							
								
							
							
								be3790519d 
								
							 
						 
						
							
							
								
								Bug 1144786: Create ClassifyLocalWithTables (r=gcp,francois)  
							
							
							
						 
						
							2015-03-26 15:24:19 -07:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Monica Chew 
								
							 
						 
						
							
							
							
							
								
							
							
								47bbee1e9f 
								
							 
						 
						
							
							
								
								Bug 1134954: Disable Safe Browsing in safe mode (r=francois,sworkman)  
							
							
							
						 
						
							2015-03-05 11:55:03 -08:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Gian-Carlo Pascutto 
								
							 
						 
						
							
							
							
							
								
							
							
								479687ac1f 
								
							 
						 
						
							
							
								
								Bug 1134885 - ChunkSets should be fallible. r=mmc  
							
							
							
						 
						
							2015-02-25 14:05:17 +01:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Carsten "Tomcat" Book 
								
							 
						 
						
							
							
							
							
								
							
							
								ce2be86630 
								
							 
						 
						
							
							
								
								Backed out changeset bc7ca0aabb24 (bug 1134885) for bustage on a CLOSED TREE  
							
							
							
						 
						
							2015-02-25 09:05:47 +01:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Gian-Carlo Pascutto 
								
							 
						 
						
							
							
							
							
								
							
							
								9bf0036576 
								
							 
						 
						
							
							
								
								Bug 1134885 - ChunkSets should be fallible. r=mmc  
							
							
							
						 
						
							2015-02-25 08:31:11 +01:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Monica Chew 
								
							 
						 
						
							
							
							
							
								
							
							
								da32e99bda 
								
							 
						 
						
							
							
								
								Bug 1122691: Skip ClassifyLocal unless tracking protection is enabled (r=mcmanus,gcp)  
							
							
							
						 
						
							2015-01-21 11:33:07 -08:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Monica Chew 
								
							 
						 
						
							
							
							
							
								
							
							
								c283b146cd 
								
							 
						 
						
							
							
								
								Bug 1120499: Proxy DoLocalLookup to the worker thread (r=gcp)  
							
							
							
						 
						
							2015-01-13 17:09:13 -08:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Monica Chew 
								
							 
						 
						
							
							
							
							
								
							
							
								152c9afdc4 
								
							 
						 
						
							
							
								
								Bug 1100024: ClassifyLocal should not lookup in any tables if safebrowsing is disabled (r=gcp)  
							
							
							
						 
						
							2015-01-09 13:25:02 -08:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Monica Chew 
								
							 
						 
						
							
							
							
							
								
							
							
								55a8118ad1 
								
							 
						 
						
							
							
								
								Bug 1108009 - Make synchronous interface nsIURIClassifier.ClassifyLocal. r=gcp  
							
							
							
						 
						
							2014-12-18 10:18:09 -08:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Monica Chew 
								
							 
						 
						
							
							
							
							
								
							
							
								3a14448afa 
								
							 
						 
						
							
							
								
								Bug 1039012: Only cancel third party channels with NS_ERROR_TRACKING_URI (r=gcp,briansmith)  
							
							
							
						 
						
							2014-07-24 10:59:00 -07:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Monica Chew 
								
							 
						 
						
							
							
							
							
								
							
							
								8d085107d6 
								
							 
						 
						
							
							
								
								Bug 1041855: Skip gethash completions on startup for hits in existing tables that haven't been registered yet (r=gcp)  
							
							
							
						 
						
							2014-07-24 10:58:41 -07:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Monica Chew 
								
							 
						 
						
							
							
							
							
								
							
							
								66c3390b1c 
								
							 
						 
						
							
							
								
								Bug 1036684: Fix safebrowsing updates (r=gcp)  
							
							
							
						 
						
							2014-07-10 18:13:35 -07:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Monica Chew 
								
							 
						 
						
							
							
							
							
								
							
							
								1ce06a3399 
								
							 
						 
						
							
							
								
								Bug 1024610: Register tracking protection list and hook it up in nsChannelClassifier (r=gcp)  
							
							
							
						 
						
							2014-07-02 12:41:00 -07:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Monica Chew 
								
							 
						 
						
							
							
							
							
								
							
							
								8ae5359acd 
								
							 
						 
						
							
							
								
								Bug 1032875: Move empty gethash URL check in case listmanager is not ready (r=gcp)  
							
							
							
						 
						
							2014-07-01 10:31:31 -07:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Monica Chew 
								
							 
						 
						
							
							
							
							
								
							
							
								386ebd5ee3 
								
							 
						 
						
							
							
								
								Bug 1021419: Implement per-table update and gethash requests  
							
							
							
						 
						
							2014-06-12 10:24:03 -07:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Benoit Jacob 
								
							 
						 
						
							
							
							
							
								
							
							
								210693da34 
								
							 
						 
						
							
							
								
								Bug 1028588 - Fix dangerous public destructors in toolkit/ - r=ehsan  
							
							
							
						 
						
							2014-06-23 18:40:02 -04:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Birunthan Mohanathas 
								
							 
						 
						
							
							
							
							
								
							
							
								59b969f7f4 
								
							 
						 
						
							
							
								
								Bug 869836 - Part 8: Use Append('c') instead of Append("c"). r=ehsan  
							
							
							
						 
						
							2014-05-22 06:48:52 +03:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Nathan Froyd 
								
							 
						 
						
							
							
							
							
								
							
							
								84041459a1 
								
							 
						 
						
							
							
								
								Bug 1003306 - part 2 - use services::GetPermissionManager everywhere that's appropriate; r=ehsan  
							
							
							
						 
						
							2014-04-29 13:27:26 -04:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Birunthan Mohanathas 
								
							 
						 
						
							
							
							
							
								
							
							
								5f1fde8824 
								
							 
						 
						
							
							
								
								Bug 900908 - Part 3: Change uses of numbered macros in nsIClassInfoImpl.h/nsISupportsImpl.h to the variadic variants. r=froydnj  
							
							
							
						 
						
							2014-04-27 03:06:00 -04:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Monica Chew 
								
							 
						 
						
							
							
							
							
								
							
							
								d1212d39f6 
								
							 
						 
						
							
							
								
								Bug 998396: Fix gethash completions, urlclassifier.malware_table and urlclassifier.phish_table may be comma-separated lists (r=gcp)  
							
							
							
						 
						
							2014-04-22 09:46:46 -07:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Ed Morley 
								
							 
						 
						
							
							
							
							
								
							
							
								74fa961dfe 
								
							 
						 
						
							
							
								
								Backed out changeset 73bb0c592bf1 (bug 998396) for debug build failures; CLOSED TREE  
							
							
							
						 
						
							2014-04-22 17:37:01 +01:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Monica Chew 
								
							 
						 
						
							
							
							
							
								
							
							
								ade3e9a917 
								
							 
						 
						
							
							
								
								Bug 998396: Fix gethash completions, urlclassifier.malware_table and urlclassifier.phish_table may be comma-separated lists (r=gcp)  
							
							
							
						 
						
							2014-04-22 09:14:51 -07:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Ed Morley 
								
							 
						 
						
							
							
							
							
								
							
							
								92378320da 
								
							 
						 
						
							
							
								
								Backed out changeset 96e274a243ff (bug 998396) for build failures; CLOSED TREE  
							
							
							
						 
						
							2014-04-22 16:36:39 +01:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Monica Chew 
								
							 
						 
						
							
							
							
							
								
							
							
								efa58c585d 
								
							 
						 
						
							
							
								
								Bug 998396: Fix gethash completions, urlclassifier.malware_table and urlclassifier.phish_table may be comma-separated lists (r=gcp)  
							
							
							
						 
						
							2014-04-22 08:13:59 -07:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Monica Chew 
								
							 
						 
						
							
							
							
							
								
							
							
								1ca4184bf7 
								
							 
						 
						
							
							
								
								Bug 985720: Rename urlclassifier.download_block_table and urlclassifier.download_allow_table (r=gcp)  
							
							
							
						 
						
							2014-03-24 10:49:05 -07:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Wes Kocher 
								
							 
						 
						
							
							
							
							
								
							
							
								7e6ad8beb5 
								
							 
						 
						
							
							
								
								Backed out changeset 3d94ebde9018 (bug 985720) for missing a file from the patch to fix a CLOSED TREE  
							
							
							
						 
						
							2014-03-24 18:07:13 -07:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Monica Chew 
								
							 
						 
						
							
							
							
							
								
							
							
								b1556deaac 
								
							 
						 
						
							
							
								
								Bug 985720: Rename urlclassifier.download_block_table and urlclassifier.download_allow_table (r=gcp)  
							
							
							
						 
						
							2014-03-24 14:57:59 -07:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Monica Chew 
								
							 
						 
						
							
							
							
							
								
							
							
								9b092b1051 
								
							 
						 
						
							
							
								
								Bug 985623: Force url classifier clients to specify which tables to lookup, add a pref to skip hash completion checks (r=gcp)  
							
							
							
						 
						
							2014-03-20 14:25:35 -07:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Gian-Carlo Pascutto 
								
							 
						 
						
							
							
							
							
								
							
							
								2f0246c854 
								
							 
						 
						
							
							
								
								Bug 783047 - Remove MAC support from SafeBrowsing code. r=mmc,dcamp  
							
							
							
						 
						
							2014-01-16 09:27:58 +01:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Ehsan Akhgari 
								
							 
						 
						
							
							
							
							
								
							
							
								1b83407ce9 
								
							 
						 
						
							
							
								
								Bug 927728 - Part 1: Replace PRUnichar with char16_t; r=roc  
							
							... 
							
							
							
							This patch was automatically generated by the following script:
#!/bin/bash
# Command to convert PRUnichar to char16_t
function convert() {
echo "Converting $1 to $2..."
find . ! -wholename "*nsprpub*" \
       ! -wholename "*security/nss*" \
       ! -wholename "*modules/libmar*" \
       ! -wholename "*/.hg*" \
       ! -wholename "obj-ff-dbg*" \
       ! -name prtypes.h \
       ! -name Char16.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 PRUnichar char16_t 
							
						 
						
							2014-01-04 10:02:17 -05:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Monica Chew 
								
							 
						 
						
							
							
							
							
								
							
							
								e8c34403bb 
								
							 
						 
						
							
							
								
								Bug 842828: Clean up urlclassifier.gethashtables preferences (r=gcp)  
							
							... 
							
							
							
							* * *
Bug 842828: Mark attributes of nsIApplicationReputationQuery as readonly, remove unused field (r=mossop)
* * *
Bug 842828: Check local list to suppress remote lookups (r=paolo) 
							
						 
						
							2013-09-26 06:51:59 -07:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Ryan VanderMeulen 
								
							 
						 
						
							
							
							
							
								
							
							
								439417c819 
								
							 
						 
						
							
							
								
								Backed out changesets af0dda676cb7, 550e2f5b4224, and bb76828c5f22 (bug 842828) for B2G bustage and xpcshell failures.  
							
							... 
							
							
							
							CLOSED TREE 
							
						 
						
							2013-09-25 11:50:51 -04:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Monica Chew 
								
							 
						 
						
							
							
							
							
								
							
							
								3d2a39baf6 
								
							 
						 
						
							
							
								
								Bug 842828: Clean up urlclassifier.gethashtables preferences (r=gcp)  
							
							
							
						 
						
							2013-09-25 07:03:45 -07:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Monica Chew 
								
							 
						 
						
							
							
							
							
								
							
							
								383e668837 
								
							 
						 
						
							
							
								
								Bug 904607: Add protocol parser for -digest256 lists (r=gcp).  
							
							
							
						 
						
							2013-09-06 17:12:33 -07: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 
							
								 
							
						 
					 
				
					
						
							
								
								
									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 
							
								 
							
						 
					 
				
					
						
							
								
								
									Po-Chun Chang 
								
							 
						 
						
							
							
							
							
								
							
							
								f6652419c5 
								
							 
						 
						
							
							
								
								Bug 898238 - Avoid wasted work in nsUrlClassifierDBServiceWorker::CacheCompletions(). r=dcamp  
							
							
							
						 
						
							2013-08-12 08:40:19 -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 
								
							 
						 
						
							
							
							
							
								
							
							
								bfdf0f3db6 
								
							 
						 
						
							
							
								
								Bug 884061 - Part 3v: Use NS_DECL_THREADSAFE_ISUPPORTS in toolkit/, r=Mossop  
							
							... 
							
							
							
							--HG--
extra : rebase_source : ad2b2f20219b42b192c313b6fa9da3383f904805 
							
						 
						
							2013-07-18 21:24:15 -05:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Mounir Lamouri 
								
							 
						 
						
							
							
							
							
								
							
							
								ff82c04802 
								
							 
						 
						
							
							
								
								Bug 813897 - Fix crash in URL Classifier when using a system principal. r=bsmith,dcamp  
							
							
							
						 
						
							2013-03-05 10:39:37 +01:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Gian-Carlo Pascutto 
								
							 
						 
						
							
							
							
							
								
							
							
								0da033e962 
								
							 
						 
						
							
							
								
								Bug 825891 - Remove the code for per-client randomization in the url-classifier. r=dcamp  
							
							
							
						 
						
							2013-01-08 16:43:33 +01:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Daniel Holbert 
								
							 
						 
						
							
							
							
							
								
							
							
								6c25aeeb31 
								
							 
						 
						
							
							
								
								Bug 825941 helper: Mark debug-only variable |rv| in nsUrlClassifierDBService.cpp as DebugOnly.  
							
							
							
						 
						
							2013-01-06 18:06:23 -08:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Daniel Holbert 
								
							 
						 
						
							
							
							
							
								
							
							
								5f7e7fca0d 
								
							 
						 
						
							
							
								
								Bug 825627, part 1: Make nsUrlClassifierDBService.cpp's "gethashNoise" & "aCount" variables as unsigned, since counts are unsigned by definition. r=gcp  
							
							
							
						 
						
							2013-01-02 09:05:19 -08:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Gian-Carlo Pascutto 
								
							 
						 
						
							
							
							
							
								
							
							
								f194fd510a 
								
							 
						 
						
							
							
								
								Bug 823665 - Rename urlclassifier.confirm-age to max-complete-age. r=gcp  
							
							
							
						 
						
							2012-12-21 08:48:30 +01:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Gian-Carlo Pascutto 
								
							 
						 
						
							
							
							
							
								
							
							
								6552acb016 
								
							 
						 
						
							
							
								
								Bug 807847 - Noise entries are erroneously entered into the misscache. r=dcamp  
							
							
							
						 
						
							2012-11-03 01:53:10 +01:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Gian-Carlo Pascutto 
								
							 
						 
						
							
							
							
							
								
							
							
								d73a4777ac 
								
							 
						 
						
							
							
								
								Bug 782106 - Disable the per-client randomization in the url-classifier. r=dcamp  
							
							
							
						 
						
							2012-11-03 01:53:10 +01:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Gian-Carlo Pascutto 
								
							 
						 
						
							
							
							
							
								
							
							
								929b82ed97 
								
							 
						 
						
							
							
								
								Bug 797302 - crash in mozilla::safebrowsing::Classifier::Check. r=dcamp  
							
							
							
						 
						
							2012-10-23 09:57:18 +02:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Isaac Aggrey 
								
							 
						 
						
							
							
							
							
								
							
							
								c984edf823 
								
							 
						 
						
							
							
								
								Bug 794510: Part 2: Use more stdint types instead of protypes.h types; r=ehsan  
							
							
							
						 
						
							2012-10-11 18:38:04 -05:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Randell Jesup 
								
							 
						 
						
							
							
							
							
								
							
							
								65539ef89c 
								
							 
						 
						
							
							
								
								Bug 773151: Convert nsCAutoString->nsAutoCString CLOSED TREE r=bsmedberg  
							
							
							
						 
						
							2012-09-01 22:35:17 -04:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Ehsan Akhgari 
								
							 
						 
						
							
							
							
							
								
							
							
								e368dc9c85 
								
							 
						 
						
							
							
								
								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 
							
								 
							
						 
					 
				
					
						
							
								
								
									Gian-Carlo Pascutto 
								
							 
						 
						
							
							
							
							
								
							
							
								52208070f2 
								
							 
						 
						
							
							
								
								Bug 768871 - Provide an option to disable per-client randomization. r=dcamp  
							
							
							
						 
						
							2012-08-15 09:07:10 +02:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Gian-Carlo Pascutto 
								
							 
						 
						
							
							
							
							
								
							
							
								b5c3234491 
								
							 
						 
						
							
							
								
								Bug 673470 - Optimize input buffer size. Cache active tables. r=dcamp  
							
							
							
						 
						
							2012-08-15 09:04:31 +02:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Gian-Carlo Pascutto 
								
							 
						 
						
							
							
							
							
								
							
							
								f6e66dd24e 
								
							 
						 
						
							
							
								
								Bug 673470 - Replace the sqlite safeb store with a flat file. r=dcamp  
							
							
							
						 
						
							2012-08-15 09:04:19 +02:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Aryeh Gregor 
								
							 
						 
						
							
							
							
							
								
							
							
								f74602e698 
								
							 
						 
						
							
							
								
								Bug 777292 - modules/libpref/, toolkit/: Fix incorrect conversions to nsresult; r=bsmedberg  
							
							
							
						 
						
							2012-07-30 12:24:36 +03:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Aryeh Gregor 
								
							 
						 
						
							
							
							
							
								
							
							
								02ea215083 
								
							 
						 
						
							
							
								
								Bug 779442 - Fix a few more incorrect uses of nsresult; r=ehsan  
							
							
							
						 
						
							2012-08-01 11:17:10 +03:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Aryeh Gregor 
								
							 
						 
						
							
							
							
							
								
							
							
								d0ad5a7d0c 
								
							 
						 
						
							
							
								
								Bug 777292 part 2 - Change all nsnull to nullptr  
							
							
							
						 
						
							2012-07-30 17:20:58 +03:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Mounir Lamouri 
								
							 
						 
						
							
							
							
							
								
							
							
								d434d2c6af 
								
							 
						 
						
							
							
								
								Bug 775796 - nsIUrlClassifierDBService.lookup() takes nsIPrincipal. r=bsmith  
							
							
							
						 
						
							2012-07-22 12:30:30 -07:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Mounir Lamouri 
								
							 
						 
						
							
							
							
							
								
							
							
								5747889de3 
								
							 
						 
						
							
							
								
								Bug 775796 - nsIURIClassifier.classify() should takes a principal. r=bsmith  
							
							
							
						 
						
							2012-07-20 09:46:59 -07:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									David Zbarsky 
								
							 
						 
						
							
							
							
							
								
							
							
								053c132aa1 
								
							 
						 
						
							
							
								
								Bug 758992 - Make the classes which use the XPCOM nsISupports implementation macros final, to avoid the warning about deleting using a pointer to a base class with virtual functions and no virtual dtor (toolkit/url-classifier); r=bzbarsky  
							
							
							
						 
						
							2012-07-17 23:46:21 -04:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Ehsan Akhgari 
								
							 
						 
						
							
							
							
							
								
							
							
								f232cb15e4 
								
							 
						 
						
							
							
								
								Bug 758992 - Make the classes which use the XPCOM nsISupports implementation macros final, to avoid the warning about deleting using a pointer to a base class with virtual functions and no virtual dtor (url-classifier parts); r=dcamp  
							
							... 
							
							
							
							Pushed on a CLOSED TREE 
							
						 
						
							2012-06-20 00:01:02 -04:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Honza Bambas 
								
							 
						 
						
							
							
							
							
								
							
							
								fc7084f564 
								
							 
						 
						
							
							
								
								Bug 720778 - Important threads should have a name for better debugability, r=bsmith, sr=bsmedberg+glandium  
							
							
							
						 
						
							2012-06-12 19:06:20 +02:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Gervase Markham 
								
							 
						 
						
							
							
							
							
								
							
							
								82ff7027aa 
								
							 
						 
						
							
							
								
								Bug 716478 - update licence to MPL 2.  
							
							
							
						 
						
							2012-05-21 12:12:37 +01:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Benjamin Smedberg 
								
							 
						 
						
							
							
							
							
								
							
							
								eaa4878487 
								
							 
						 
						
							
							
								
								Bug 734847 part 2 - treewide changes resulting from the default-infallibility of hashtables; either remove useless result checks, or use the fallible version of APIs, depending on context, r=jlebar  
							
							... 
							
							
							
							--HG--
extra : rebase_source : 844b008c5167e6ca39a7ba9eeec8b30672938704 
							
						 
						
							2012-05-18 13:30:49 -04:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Gian-Carlo Pascutto 
								
							 
						 
						
							
							
							
							
								
							
							
								08beb49296 
								
							 
						 
						
							
							
								
								Backout 173f90d397a8 (Bug 673470). rs=dcamp a=mfinkle  
							
							
							
						 
						
							2012-04-20 07:46:47 +02:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Geoff Lankow 
								
							 
						 
						
							
							
							
							
								
							
							
								a825a1156c 
								
							 
						 
						
							
							
								
								Bug 718255 - Merge nsIPrefBranch2 with nsIPrefBranch - Part C, remove uses of nsIPrefBranch2 in toolkit/ ; r=bsmedberg  
							
							
							
						 
						
							2012-01-17 14:18:29 +13:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Gian-Carlo Pascutto 
								
							 
						 
						
							
							
							
							
								
							
							
								a784af5a5b 
								
							 
						 
						
							
							
								
								Bug 673470 - Replace the SQLite SafeBrowsing store with an optimized store. r=dcamp  
							
							
							
						 
						
							2011-12-06 19:03:05 +01:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Gian-Carlo Pascutto 
								
							 
						 
						
							
							
							
							
								
							
							
								99a251d9ae 
								
							 
						 
						
							
							
								
								Backout 44a0dc4fb9ff (Bug 673470) for Talos regression.  
							
							
							
						 
						
							2012-02-01 20:10:02 +01:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Gian-Carlo Pascutto 
								
							 
						 
						
							
							
							
							
								
							
							
								00125c4e7a 
								
							 
						 
						
							
							
								
								Bug 673470 - Replace the SQLite SafeBrowsing store with an optimized store. r=dcamp  
							
							
							
						 
						
							2011-12-06 19:03:05 +01:00