gecko/xpcom/glue
Ehsan Akhgari b6e35bb4b4 Bug 1118486 - Part 1: Use = delete instead of MOZ_DELETE directly; r=Waldo
Most of this patch (with the exception of dom/bindings/Codegen.py) was
generated by the following bash script:

#!/bin/bash

function convert() {
echo "Converting $1 to $2..."
find . ! -wholename "*nsprpub*" \
       ! -wholename "*security/nss*" \
       ! -wholename "*/.hg*" \
       ! -wholename "*/.git*" \
       ! -wholename "obj-*" \
         -type f \
      \( -iname "*.cpp" \
         -o -iname "*.h" \
         -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_DELETE '= delete'
2015-01-08 23:19:05 -05:00
..
nomozalloc
standalone Bug 1014341 (part 1) - Remove trace-malloc. r=dbaron,glandium. 2015-01-07 16:13:03 -08:00
staticruntime
tests/gtest Bug 1117211 - Move the XPCOM gtests temporarily placed in xpcom/glue/tests/gtest into xpcom/test/gtest now that it exists; r=froydnj 2015-01-05 11:30:36 -05:00
AppData.cpp
AppData.h
AutoRestore.h
BlockingResourceBase.cpp Bug 1105215: fix build break when MOZ_CALLSTACK_DISABLED is not defined. r=njn 2014-11-27 13:52:56 +08:00
BlockingResourceBase.h
CondVar.h
DeadlockDetector.h Bug 1118486 - Part 1: Use = delete instead of MOZ_DELETE directly; r=Waldo 2015-01-08 23:19:05 -05:00
EnumeratedArrayCycleCollection.h
FileUtils.cpp
FileUtils.h
GenericFactory.cpp
GenericFactory.h
GenericModule.cpp
HoldDropJSObjects.h
IntentionalCrash.h
MainThreadUtils.h
Makefile.in
Monitor.h Bug 1091921 - Don't disable operator delete for Monitor and Mutex Auto helpers. r=froydnj 2014-11-10 13:37:52 -08:00
moz.build
Mutex.h Bug 1091921 - Don't disable operator delete for Monitor and Mutex Auto helpers. r=froydnj 2014-11-10 13:37:52 -08:00
nsArrayEnumerator.cpp
nsArrayEnumerator.h
nsArrayUtils.cpp
nsArrayUtils.h
nsBaseHashtable.h
nsCategoryCache.cpp
nsCategoryCache.h
nsClassHashtable.h Bug 1097271 - remove unused ptr variable from nsClassHashtable::RemoveAndForget; r=mccr8 2014-11-11 16:47:29 -05:00
nsClassInfoImpl.cpp
nsCOMArray.cpp
nsCOMArray.h Bug 1118486 - Part 1: Use = delete instead of MOZ_DELETE directly; r=Waldo 2015-01-08 23:19:05 -05:00
nsComponentManagerUtils.cpp
nsComponentManagerUtils.h Bug 1114880 follow-up: Rename MOZ_{STRONG,WEAK}_REF to MOZ_{OWNING,NON_OWNING}_REF 2014-12-23 21:17:50 -05:00
nsCOMPtr.cpp
nsCOMPtr.h Bug 1116906 - Move AlreadyAddRefed.h to MFBT; r=froydnj 2015-01-07 11:51:29 -05:00
nsCRTGlue.cpp Bug 1111407 - Allow sending a copy of all stderr to a file to get around logcat overflow. r=ehsan 2014-12-15 15:00:56 -05:00
nsCRTGlue.h
nsCycleCollectionNoteChild.h Bug 1097861 - make CycleCollectionNoteChild more easily forward-declarable; r=mccr8 2014-11-12 15:22:32 -05:00
nsCycleCollectionNoteRootCallback.h Bug 1105069 - Part 10: Convert NoteWeakMapping to GCCellPtr; r=jonco, r=mccr8 2014-12-05 09:38:32 -08:00
nsCycleCollectionParticipant.cpp Bug 1105069 - Part 14: Convert NoteJSChild to GCCellPtr; r=mccr8, r=jonco 2014-12-05 09:38:34 -08:00
nsCycleCollectionParticipant.h Bug 1117035 - Mark virtual overridden functions as MOZ_OVERRIDE in XPCOM; r=froydnj 2015-01-05 11:25:41 -05:00
nsCycleCollectionTraversalCallback.h Bug 1105069 - Part 14: Convert NoteJSChild to GCCellPtr; r=mccr8, r=jonco 2014-12-05 09:38:34 -08:00
nsDataHashtable.h
nsDebug.h Bug 1111407 - Allow sending a copy of all stderr to a file to get around logcat overflow. r=ehsan 2014-12-15 15:00:56 -05:00
nsDeque.cpp
nsDeque.h Bug 1097283: Fix count/byte mismatches in NS_ABORT_OOM calls. r=froydnj 2014-11-12 21:13:44 +13:00
nsEnumeratorUtils.cpp Bug 1117035 - Mark virtual overridden functions as MOZ_OVERRIDE in XPCOM; r=froydnj 2015-01-05 11:25:41 -05:00
nsEnumeratorUtils.h
nsHashKeys.h Bug 1114880 follow-up: Rename MOZ_{STRONG,WEAK}_REF to MOZ_{OWNING,NON_OWNING}_REF 2014-12-23 21:17:50 -05:00
nsIClassInfoImpl.h
nsID.cpp
nsID.h
nsIInterfaceRequestorUtils.cpp
nsIInterfaceRequestorUtils.h Bug 1114880 follow-up: Rename MOZ_{STRONG,WEAK}_REF to MOZ_{OWNING,NON_OWNING}_REF 2014-12-23 21:17:50 -05:00
nsINIParser.cpp
nsINIParser.h
nsInterfaceHashtable.h
nsISupportsImpl.cpp
nsISupportsImpl.h Bug 1118486 - Part 1: Use = delete instead of MOZ_DELETE directly; r=Waldo 2015-01-08 23:19:05 -05:00
nsISupportsUtils.h
nsIWeakReferenceUtils.h
nsJSThingHashtable.h
nsMemory.cpp
nsMemory.h
nsProxyRelease.cpp Bug 1114880 follow-up: Rename MOZ_{STRONG,WEAK}_REF to MOZ_{OWNING,NON_OWNING}_REF 2014-12-23 21:17:50 -05:00
nsProxyRelease.h Bug 1114999 - Part 2: Apply MOZ_NO_ADDREF_RELEASE_ON_RETURN to all smart pointer arrow operators that can return refcounted objects; r=jrmuizel 2015-01-06 16:30:03 -05:00
nsQuickSort.cpp
nsQuickSort.h
nsRefPtrHashtable.h
nsServiceManagerUtils.h
nsStringAPI.cpp
nsStringAPI.h Bug 1118486 - Part 1: Use = delete instead of MOZ_DELETE directly; r=Waldo 2015-01-08 23:19:05 -05:00
nsStringGlue.h
nsTArray-inl.h Bug 1048044 - Use exponential growth when growing an nsTArray. r=froydnj. 2014-10-29 20:34:33 -07:00
nsTArray.cpp
nsTArray.h bug 976927 support nsAutoTArray::operator=(const nsTArray&) r=froydnj 2014-11-19 12:40:28 +13:00
nsTArrayForwardDeclare.h
nsTextFormatter.cpp
nsTextFormatter.h
nsTHashtable.cpp
nsTHashtable.h Bug 1118486 - Part 1: Use = delete instead of MOZ_DELETE directly; r=Waldo 2015-01-08 23:19:05 -05:00
nsThreadIDs.h
nsThreadUtils.cpp Bug 970307: Part 1: Report status of each thread to find when all the threads are idle. r=nfroyd 2014-12-18 17:00:39 +08:00
nsThreadUtils.h Bug 1118486 - Part 1: Use = delete instead of MOZ_DELETE directly; r=Waldo 2015-01-08 23:19:05 -05:00
nsTObserverArray.cpp
nsTObserverArray.h
nsTPriorityQueue.h
nsTWeakRef.h Bug 1114999 - Part 2: Apply MOZ_NO_ADDREF_RELEASE_ON_RETURN to all smart pointer arrow operators that can return refcounted objects; r=jrmuizel 2015-01-06 16:30:03 -05:00
nsVersionComparator.cpp
nsVersionComparator.h
nsVoidArray.cpp
nsVoidArray.h
nsWeakReference.cpp Bug 1117035 - Mark virtual overridden functions as MOZ_OVERRIDE in XPCOM; r=froydnj 2015-01-05 11:25:41 -05:00
nsWeakReference.h Bug 1114880 follow-up: Rename MOZ_{STRONG,WEAK}_REF to MOZ_{OWNING,NON_OWNING}_REF 2014-12-23 21:17:50 -05:00
nsXPTCUtils.h
objs.mozbuild
Observer.h
pldhash.cpp Bug 1118024 - Add explicit PL_DHashTable{Add,Lookup,Remove} functions. r=nfroyd 2015-01-05 20:26:50 -06:00
pldhash.h Bug 1118024 - Add explicit PL_DHashTable{Add,Lookup,Remove} functions. r=nfroyd 2015-01-05 20:26:50 -06:00
ReentrantMonitor.h Bug 1091921 - Don't disable operator delete for Monitor and Mutex Auto helpers. r=froydnj 2014-11-10 13:37:52 -08:00