Birunthan Mohanathas 
								
							 
						 
						
							
							
							
							
								
							
							
								a8939590de 
								
							 
						 
						
							
							
								
								Bug 1182996 - Fix and add missing namespace comments. rs=ehsan  
							
							... 
							
							
							
							The bulk of this commit was generated by running:
  run-clang-tidy.py \
    -checks='-*,llvm-namespace-comment' \
    -header-filter=^/.../mozilla-central/.* \
    -fix 
							
						 
						
							2015-07-13 08:25:42 -07:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Birunthan Mohanathas 
								
							 
						 
						
							
							
							
							
								
							
							
								8b524164fa 
								
							 
						 
						
							
							
								
								Bug 968520 - Add mozilla::fallible to FallibleTArray::InsertElementSorted calls. r=froydnj  
							
							
							
						 
						
							2015-06-08 13:40:00 -07:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Birunthan Mohanathas 
								
							 
						 
						
							
							
							
							
								
							
							
								735ccdd101 
								
							 
						 
						
							
							
								
								Bug 968520 - Add mozilla::fallible to Fallible{Auto,}TArray::SetLength calls. r=froydnj  
							
							
							
						 
						
							2015-05-18 13:50:35 -07:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Gian-Carlo Pascutto 
								
							 
						 
						
							
							
							
							
								
							
							
								479687ac1f 
								
							 
						 
						
							
							
								
								Bug 1134885 - ChunkSets should be fallible. r=mmc  
							
							
							
						 
						
							2015-02-25 14:05:17 +01:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Gian-Carlo Pascutto 
								
							 
						 
						
							
							
							
							
								
							
							
								6b723f76e7 
								
							 
						 
						
							
							
								
								Bug 1135022 - Clean up ChunkSet API. r=mmc  
							
							
							
						 
						
							2015-02-25 14:05:10 +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 
							
								 
							
						 
					 
				
					
						
							
								
								
									Carsten "Tomcat" Book 
								
							 
						 
						
							
							
							
							
								
							
							
								c8ca2853b9 
								
							 
						 
						
							
							
								
								Backed out changeset 7d74b74bb6ae (bug 1135022)  
							
							
							
						 
						
							2015-02-25 09:04:34 +01:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Gian-Carlo Pascutto 
								
							 
						 
						
							
							
							
							
								
							
							
								f02647021c 
								
							 
						 
						
							
							
								
								Bug 1135022 - Clean up ChunkSet API. r=mmc  
							
							
							
						 
						
							2015-02-20 15:05:41 +01:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Gian-Carlo Pascutto 
								
							 
						 
						
							
							
							
							
								
							
							
								9bf0036576 
								
							 
						 
						
							
							
								
								Bug 1134885 - ChunkSets should be fallible. r=mmc  
							
							
							
						 
						
							2015-02-25 08:31:11 +01:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Benoit Jacob 
								
							 
						 
						
							
							
							
							
								
							
							
								60d536773a 
								
							 
						 
						
							
							
								
								Bug 1004098 - Make nsTArray use size_t in its interface (32bitness is fine as an internal detail) - r=froydnj, sr=bsmedberg  
							
							
							
						 
						
							2014-05-08 21:03:35 -04: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 
							
								 
							
						 
					 
				
					
						
							
								
								
									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 
								
							 
						 
						
							
							
							
							
								
							
							
								328bf6ddf8 
								
							 
						 
						
							
							
								
								Bug 673470 - Update the new SafeBrowsing code to MPL 2.0. r=dcamp  
							
							
							
						 
						
							2012-08-15 09:10:56 +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 
							
								 
							
						 
					 
				
					
						
							
								
								
									Gian-Carlo Pascutto 
								
							 
						 
						
							
							
							
							
								
							
							
								08beb49296 
								
							 
						 
						
							
							
								
								Backout 173f90d397a8 (Bug 673470). rs=dcamp a=mfinkle  
							
							
							
						 
						
							2012-04-20 07:46:47 +02: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