gecko-dev/dom/system/gonk
Nathan Froyd 583afa0965 Bug 1207245 - part 3 - switch all uses of mozilla::RefPtr<T> to nsRefPtr<T>; r=ehsan
This commit was generated using the following script, executed at the
top level of a typical source code checkout.

 # Don't modify select files in mfbt/ because it's not worth trying to
 # tease out the dependencies currently.
 #
 # Don't modify anything in media/gmp-clearkey/0.1/ because those files
 # use their own RefPtr, defined in their own RefCounted.h.
find . -name '*.cpp' -o -name '*.h' -o -name '*.mm' -o -name '*.idl'| \
    grep -v 'mfbt/RefPtr.h' | \
    grep -v 'mfbt/nsRefPtr.h' | \
    grep -v 'mfbt/RefCounted.h' | \
    grep -v 'media/gmp-clearkey/0.1/' | \
    xargs perl -p -i -e '
 s/mozilla::RefPtr/nsRefPtr/g; # handle declarations in headers
 s/\bRefPtr</nsRefPtr</g; # handle local variables in functions
 s#mozilla/RefPtr.h#mozilla/nsRefPtr.h#; # handle #includes
 s#mfbt/RefPtr.h#mfbt/nsRefPtr.h#;       # handle strange #includes
'

 # |using mozilla::RefPtr;| is OK; |using nsRefPtr;| is invalid syntax.
find . -name '*.cpp' -o -name '*.mm' | xargs sed -i -e '/using nsRefPtr/d'

 # RefPtr.h used |byRef| for dealing with COM-style outparams.
 # nsRefPtr.h uses |getter_AddRefs|.
 # Fixup that mismatch.
find . -name '*.cpp' -o -name '*.h'| \
    xargs perl -p -i -e 's/byRef/getter_AddRefs/g'
2015-10-18 00:40:10 -04:00
..
android_audio Bug 1206212 - Remove AUDIO_STREAM_FM after KK r=alwu 2015-09-21 17:43:41 -07:00
mozstumbler Bug 1210517 - Create nsVariant directly rather than via do_CreateInstance(). r=froydnj 2015-10-07 08:17:42 -07:00
tests Bug 980945 - Followup: Fix b2g test on CLOSED TREE. r=tree-fairy 2015-10-15 19:23:11 +02:00
AudioChannelManager.cpp Bug 1208155 - Make hal functions explicit in AudioManager r=alwu 2015-09-25 04:56:28 -07:00
AudioChannelManager.h Bug 1167465 - Exposing Allowed Audio Channels in System App's Window, r=alwu, r=fabrice 2015-09-23 08:12:52 +01:00
AudioManager.cpp Bug 1196358 - update volume setting to database when the volume changing. r=sotaro. 2015-09-30 16:14:59 +08:00
AudioManager.h Bug 1196358 - update volume setting to database when the volume changing. r=sotaro. 2015-09-30 16:14:59 +08:00
AutoMounter.cpp Bug 1207245 - part 3 - switch all uses of mozilla::RefPtr<T> to nsRefPtr<T>; r=ehsan 2015-10-18 00:40:10 -04:00
AutoMounter.h
AutoMounterSetting.cpp Bug 1182996 - Fix and add missing namespace comments. rs=ehsan 2015-07-13 08:25:42 -07:00
AutoMounterSetting.h Bug 1182996 - Fix and add missing namespace comments. rs=ehsan 2015-07-13 08:25:42 -07:00
DataCallInterfaceService.js Bug 1174998 - Part 3: Read data call's MTU from network/apn settings. r=echen 2015-09-23 15:35:32 +08:00
DataCallInterfaceService.manifest
DataCallManager.js Bug 1174998 - Part 3: Read data call's MTU from network/apn settings. r=echen 2015-09-23 15:35:32 +08:00
DataCallManager.manifest
GeolocationUtil.cpp Bug 1200304 - Move stumbling code from gonkgps to MozStumbler.cpp. r=jdm 2015-09-08 21:20:56 -04:00
GeolocationUtil.h Bug 1200304 - Move stumbling code from gonkgps to MozStumbler.cpp. r=jdm 2015-09-08 21:20:56 -04:00
GonkGPSGeolocationProvider.cpp Bug 1207266 - turn off b2g stumbler if no RIL. r=jdm 2015-09-24 01:29:47 -04:00
GonkGPSGeolocationProvider.h
Makefile.in
MozMtpCommon.h
MozMtpDatabase.cpp Bug 1207245 - part 3 - switch all uses of mozilla::RefPtr<T> to nsRefPtr<T>; r=ehsan 2015-10-18 00:40:10 -04:00
MozMtpDatabase.h Bug 1207245 - part 3 - switch all uses of mozilla::RefPtr<T> to nsRefPtr<T>; r=ehsan 2015-10-18 00:40:10 -04:00
MozMtpServer.cpp Bug 1205028 - Don't tell MTP server about files that it added/modified. r=alchen 2015-10-13 15:35:11 -07:00
MozMtpServer.h
MozMtpStorage.cpp
MozMtpStorage.h Bug 1207245 - part 3 - switch all uses of mozilla::RefPtr<T> to nsRefPtr<T>; r=ehsan 2015-10-18 00:40:10 -04:00
NetIdManager.cpp
NetIdManager.h
NetworkInterfaceListService.js Bug 1167132 - Part 15: [NetworkManager] Move network information into a separate interface (NetworkInterfaceList). r=echen 2015-07-29 02:16:00 -04:00
NetworkInterfaceListService.manifest
NetworkManager.js Bug 1187262 - Let the flag 'Services.io.offline' reference the state of tethering. r=jjong 2015-10-05 09:59:08 +08:00
NetworkManager.manifest
NetworkService.js Bug 1174998 - Part 1: add setMtu() support in NetworkService. r=echen,smaug 2015-09-23 15:35:29 +08:00
NetworkService.manifest
NetworkUtils.cpp Bug 1174998 - Part 1: add setMtu() support in NetworkService. r=echen,smaug 2015-09-23 15:35:29 +08:00
NetworkUtils.h Bug 1174998 - Part 1: add setMtu() support in NetworkService. r=echen,smaug 2015-09-23 15:35:29 +08:00
NetworkWorker.cpp Bug 1171931 - Refactor duplicated code using XRE_IsParent/ContentProcess. r=froydnj 2015-07-03 18:29:00 -07:00
NetworkWorker.h
OpenFileFinder.cpp
OpenFileFinder.h
RILSystemMessenger.jsm
RILSystemMessengerHelper.js Bug 1202902 - Mass replace toplevel 'let' with 'var' in preparation for global lexical scope. (rs=jorendorff) 2015-09-15 11:19:45 -07:00
RILSystemMessengerHelper.manifest
RadioInterfaceLayer.js Bug 1174998 - Part 3: Read data call's MTU from network/apn settings. r=echen 2015-09-23 15:35:32 +08:00
RadioInterfaceLayer.manifest
SystemWorkerManager.cpp Bug 1114937 - Part 6: Deprecate RILContentHelper. r=echen 2015-06-16 18:56:38 +08:00
SystemWorkerManager.h Bug 1203426 - Rename StructuredCloneIPCHelper to StructuredCloneData, r=smaug 2015-09-10 21:50:58 +01:00
TetheringService.js Bug 1187262 - Let the flag 'Services.io.offline' reference the state of tethering. r=jjong 2015-10-05 09:59:08 +08:00
TetheringService.manifest
TimeZoneSettingObserver.cpp Bug 1182996 - Fix and add missing namespace comments. rs=ehsan 2015-07-13 08:25:42 -07:00
TimeZoneSettingObserver.h
Volume.cpp Bug 1207245 - part 3 - switch all uses of mozilla::RefPtr<T> to nsRefPtr<T>; r=ehsan 2015-10-18 00:40:10 -04:00
Volume.h Bug 1177374 - Call realpath on volume mount points so thatVolumeService::GetVolumeByPath works properly. r=achen 2015-10-15 11:42:10 -07:00
VolumeCommand.cpp
VolumeCommand.h Bug 1207245 - part 3 - switch all uses of mozilla::RefPtr<T> to nsRefPtr<T>; r=ehsan 2015-10-18 00:40:10 -04:00
VolumeManager.cpp Bug 1207245 - part 3 - switch all uses of mozilla::RefPtr<T> to nsRefPtr<T>; r=ehsan 2015-10-18 00:40:10 -04:00
VolumeManager.h Bug 1207245 - part 3 - switch all uses of mozilla::RefPtr<T> to nsRefPtr<T>; r=ehsan 2015-10-18 00:40:10 -04:00
VolumeManagerLog.h
VolumeServiceIOThread.cpp Bug 1207245 - part 3 - switch all uses of mozilla::RefPtr<T> to nsRefPtr<T>; r=ehsan 2015-10-18 00:40:10 -04:00
VolumeServiceIOThread.h Bug 1207245 - part 3 - switch all uses of mozilla::RefPtr<T> to nsRefPtr<T>; r=ehsan 2015-10-18 00:40:10 -04:00
VolumeServiceTest.cpp
VolumeServiceTest.h
moz.build Bug 1207266 - turn off b2g stumbler if no RIL. r=jdm 2015-09-24 01:29:47 -04:00
nsIAudioManager.idl Bug 1170117 - Separate volume control. r=baku 2015-07-17 10:07:37 +08:00
nsIDataCallInterfaceService.idl Bug 1174998 - Part 3: Read data call's MTU from network/apn settings. r=echen 2015-09-23 15:35:32 +08:00
nsIDataCallManager.idl Bug 1185406 - B2G RIL: Read 'pcscf' and expose it in nsIRilNetworkInfo. r=hsinyi 2015-08-18 09:54:36 +08:00
nsIGonkDataCallInterfaceService.idl
nsINetworkInterface.idl Bug 1174998 - Part 2: Set MTU for connected network interfaces. r=echen 2015-09-23 15:35:31 +08:00
nsINetworkInterfaceListService.idl Bug 1167132 - Part 15: [NetworkManager] Move network information into a separate interface (NetworkInterfaceList). r=echen 2015-07-29 02:16:00 -04:00
nsINetworkManager.idl Bug 1167132 - Part 1: [NetworkManager] Move network information into a separate interface (idl). r=echen 2015-07-29 02:00:00 -04:00
nsINetworkService.idl Bug 1174998 - Part 1: add setMtu() support in NetworkService. r=echen,smaug 2015-09-23 15:35:29 +08:00
nsINetworkWorker.idl
nsIRadioInterfaceLayer.idl Bug 1114937 - Part 6: Deprecate RILContentHelper. r=echen 2015-06-16 18:56:38 +08:00
nsISystemWorkerManager.idl
nsITetheringService.idl Bug 1187262 - Let the flag 'Services.io.offline' reference the state of tethering. r=jjong 2015-10-05 09:59:08 +08:00
nsIVolume.idl
nsIVolumeMountLock.idl
nsIVolumeService.idl
nsIVolumeStat.idl
nsIWorkerHolder.idl
nsVolume.cpp Bug 1166320 - Make volume service safer to use off main thread. r=dhylands 2015-08-20 12:47:23 -04:00
nsVolume.h Bug 1166320 - Make volume service safer to use off main thread. r=dhylands 2015-08-20 12:47:23 -04:00
nsVolumeMountLock.cpp Bug 1191100 - Remove XPIDL signature comments in .cpp files. r=ehsan 2015-08-04 16:17:36 -07:00
nsVolumeMountLock.h
nsVolumeService.cpp Bug 1166320 - Make volume service safer to use off main thread. r=dhylands 2015-08-20 12:47:23 -04:00
nsVolumeService.h Bug 1207245 - part 3 - switch all uses of mozilla::RefPtr<T> to nsRefPtr<T>; r=ehsan 2015-10-18 00:40:10 -04:00
nsVolumeStat.cpp Bug 1191100 - Remove XPIDL signature comments in .cpp files. r=ehsan 2015-08-04 16:17:36 -07:00
nsVolumeStat.h
ril_consts.js Bug 1122376 - Support read SIM contact dialling number exceed 20 digits. r=echen 2015-09-20 19:48:00 +02:00
ril_worker.js Bug 1174998 - Part 3: Read data call's MTU from network/apn settings. r=echen 2015-09-23 15:35:32 +08:00
ril_worker_buf_object.js
ril_worker_telephony_request_queue.js
systemlibs.js Bug 1202902 - Mass replace toplevel 'let' with 'var' in preparation for global lexical scope. (rs=jorendorff) 2015-09-15 11:19:45 -07:00
worker_buf.js Bug 1202902 - Mass replace toplevel 'let' with 'var' in preparation for global lexical scope. (rs=jorendorff) 2015-09-15 11:19:45 -07:00