gecko-dev/dom/ipc
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
..
tests Bug 1168337: Kill the processes on startup of the Nuwa test case fix the abort in the preallocated process. r=khuey 2015-10-13 10:58:43 +08:00
AppProcessChecker.cpp Bug 1165272 - Part 1: remove getAppCodebasePrincipal. r=bholley 2015-08-17 17:03:19 +08:00
AppProcessChecker.h Bug 1182996 - Fix and add missing namespace comments. rs=ehsan 2015-07-13 08:25:42 -07:00
Blob.cpp Bug 1068975 - Remove FileInfo from File; r=baku 2015-09-09 13:15:14 +02:00
BlobChild.h Bug 1177688, part 1 - Add API and functionality to the BlobImpl classes so that BlobImpl's that are created from an nsIFile can provide information about whether or not the nsIFile was a directory. r=baku 2015-06-23 00:31:28 +01:00
BlobParent.h Bug 1163387 - Rename FileImpl to BlobImpl, r=ehsan 2015-05-12 13:11:03 +01:00
BrowserConfiguration.ipdlh Bug 1138793 - Add a sync IPC to get BrowserConfiguration. r=baku 2015-04-23 19:41:00 -04:00
CPOWManagerGetter.h Bug 1152551, part 2 - Fix mode lines in dom/. r=jst 2015-05-03 15:32:37 -04:00
ColorPickerParent.cpp Bug 1152551, part 2 - Fix mode lines in dom/. r=jst 2015-05-03 15:32:37 -04:00
ColorPickerParent.h Bug 1152551, part 2 - Fix mode lines in dom/. r=jst 2015-05-03 15:32:37 -04:00
ContentBridgeChild.cpp Bug 1212027 - part 5 - add LoneManagedOrNull for simplifying a lot of upcoming code; r=jld 2015-10-07 20:15:56 -04:00
ContentBridgeChild.h Bug 1114507 - Part 3: Remove PContetBridge channel when grandchild-process is killed. r=kanru 2015-08-31 01:53:00 -04:00
ContentBridgeParent.cpp Bug 1212027 - part 5 - add LoneManagedOrNull for simplifying a lot of upcoming code; r=jld 2015-10-07 20:15:56 -04:00
ContentBridgeParent.h Bug 1203426 - Rename StructuredCloneIPCHelper to StructuredCloneData, r=smaug 2015-09-10 21:50:58 +01:00
ContentChild.cpp Back out 2 changesets (bug 1214967) for b2g debug mochitest-14 hangs, or perhaps fatal assertions failing to be fatal until a hang, or summat 2015-10-16 20:26:20 -07:00
ContentChild.h Back out 2 changesets (bug 1214967) for b2g debug mochitest-14 hangs, or perhaps fatal assertions failing to be fatal until a hang, or summat 2015-10-16 20:26:20 -07:00
ContentParent.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
ContentParent.h bug 1212906 - don't handle windows messages while waiting for a sync a11y ipc message r=billm 2015-10-14 14:02:47 -04:00
ContentProcess.cpp Bug 1207972: Move to using USER_INTERACTIVE and JOB_INTERACTIVE by default for the Windows content sandbox. r=tabraldes 2015-10-05 11:10:46 +01:00
ContentProcess.h Bug 1182996 - Fix and add missing namespace comments. rs=ehsan 2015-07-13 08:25:42 -07:00
ContentProcessManager.cpp Bug 1191740 - Add originAttributes in TabContext. r=bholley 2015-10-14 10:52:06 +08:00
ContentProcessManager.h Bug 1114507 - Part 2: Add/release the appId's refcnt in oop case. r=kanru 2015-08-28 03:18:00 -04:00
CrashReporterChild.cpp Bug 1212027 - part 5 - add LoneManagedOrNull for simplifying a lot of upcoming code; r=jld 2015-10-07 20:15:56 -04:00
CrashReporterChild.h Bug 1152551, part 2 - Fix mode lines in dom/. r=jst 2015-05-03 15:32:37 -04:00
CrashReporterParent.cpp Bug 1160142 - Updates for content crash reporter apis to allow the pairing of a passed in minidump. r=ted 2015-06-11 12:25:45 -05:00
CrashReporterParent.h Bug 1160142 - Updates for content crash reporter apis to allow the pairing of a passed in minidump. r=ted 2015-06-11 12:25:45 -05:00
DOMTypes.ipdlh Bug 771288 - Multiprocess FileHandle support (FileHandle on PBackground); r=baku 2015-09-09 13:15:05 +02:00
FilePickerParent.cpp Bug 1202952 - Fix directory picking for e10s on Windows by making FilePickerParent use the correct nsIFilePicker API for directory picking. r=roc 2015-08-17 03:03:49 +01:00
FilePickerParent.h Bug 1163388 - patch 2 - get rid of nsIDOMFile, r=ehsan 2015-05-18 14:52:26 +01:00
IdType.h Bug 1182996 - Fix and add missing namespace comments. rs=ehsan 2015-07-13 08:25:42 -07:00
NuwaChild.cpp Bug 1155547, Part 2: Create PNuwa protocol (managed by PBackground) for forking content processes. r=khuey 2015-07-31 15:25:27 +08:00
NuwaChild.h Bug 1155547, Part 2: Create PNuwa protocol (managed by PBackground) for forking content processes. r=khuey 2015-07-31 15:25:27 +08:00
NuwaParent.cpp Bug 1155547, Part 2: Create PNuwa protocol (managed by PBackground) for forking content processes. r=khuey 2015-07-31 15:25:27 +08:00
NuwaParent.h Bug 1155547, Part 2: Create PNuwa protocol (managed by PBackground) for forking content processes. r=khuey 2015-07-31 15:25:27 +08:00
PBlob.ipdl
PBlobStream.ipdl
PBrowser.ipdl Bug 1199885 - Part 12: Add StartScrollbarDrag IPC message. r=kats 2015-09-28 17:00:25 -04:00
PBrowserOrId.ipdlh
PColorPicker.ipdl
PContent.ipdl Back out 2 changesets (bug 1214967) for b2g debug mochitest-14 hangs, or perhaps fatal assertions failing to be fatal until a hang, or summat 2015-10-16 20:26:20 -07:00
PContentBridge.ipdl Bug 1212248 - Align the creation of cpow in ContentBridgeParent to ContentParent. r=khuey 2015-10-09 09:25:00 +02:00
PContentDialog.ipdl
PContentPermission.ipdlh
PContentPermissionRequest.ipdl
PCrashReporter.ipdl
PCycleCollectWithLogs.ipdl
PDocumentRenderer.ipdl
PFilePicker.ipdl Bug 1163387 - Rename FileImpl to BlobImpl, r=ehsan 2015-05-12 13:11:03 +01:00
PMemoryReportRequest.ipdl Bug 1151597 - Step 1: Change memory reporting IPC to send one report per message. r=erahm 2015-04-27 15:45:00 -04:00
PNuwa.ipdl Bug 1155547, Part 2: Create PNuwa protocol (managed by PBackground) for forking content processes. r=khuey 2015-07-31 15:25:27 +08:00
PPluginWidget.ipdl Bug 1165903: For Windows NPAPI do window re-parenting in the chrome process to allow for sandboxing. r=jimm 2015-06-15 16:08:51 +01:00
PProcessHangMonitor.ipdl
PScreenManager.ipdl Bug 1155621 - Make nsIntRect and nsIntPoint typedefs of mozilla::gfx::IntRect and mozilla::gfx::IntPoint. r=Bas 2015-04-21 17:04:57 +02:00
PTabContext.ipdlh Bug 1191740 - Add originAttributes in TabContext. r=bholley 2015-10-14 10:52:06 +08:00
PermissionMessageUtils.cpp Bug 1152551, part 2 - Fix mode lines in dom/. r=jst 2015-05-03 15:32:37 -04:00
PermissionMessageUtils.h Bug 1152551, part 2 - Fix mode lines in dom/. r=jst 2015-05-03 15:32:37 -04:00
PreallocatedProcessManager.cpp Bug 1168337: Kill the processes on startup of the Nuwa test case fix the abort in the preallocated process. r=khuey 2015-10-13 10:58:43 +08:00
PreallocatedProcessManager.h Bug 1182996 - Fix and add missing namespace comments. rs=ehsan 2015-07-13 08:25:42 -07:00
ProcessHangMonitor.cpp Bug 1212984 - HangMonitorChild should delete its Transport. r=billm 2015-10-12 10:27:00 -07:00
ProcessHangMonitor.h Bug 1182996 - Fix and add missing namespace comments. rs=ehsan 2015-07-13 08:25:42 -07:00
ProcessHangMonitorIPC.h Bug 1182996 - Fix and add missing namespace comments. rs=ehsan 2015-07-13 08:25:42 -07:00
ProcessPriorityManager.cpp Bug 1212027 - part 7 - modify IPDL codegen to store sub-protocols in a hashtable rather than an array; r=jld,nical,cpearce,billm 2015-10-07 14:30:33 -04:00
ProcessPriorityManager.h Bug 1182996 - Fix and add missing namespace comments. rs=ehsan 2015-07-13 08:25:42 -07:00
ScreenManagerParent.cpp Bug 1182665 - Adjust tile sizes depending on the screen size r=nical 2015-09-28 09:36:57 -05:00
ScreenManagerParent.h Bug 1152551, part 2 - Fix mode lines in dom/. r=jst 2015-05-03 15:32:37 -04:00
StructuredCloneData.cpp Bug 1213437 - Less data copying when handling structured clones in MessageManager, r=baku 2015-10-10 23:32:20 +03:00
StructuredCloneData.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
TabChild.cpp Bug 1212244 - Same-process sendAsyncMessage can now throw instead of OOM. r=smaug 2015-10-07 12:42:43 +02:00
TabChild.h Bug 1212244 - Same-process sendAsyncMessage can now throw instead of OOM. r=smaug 2015-10-07 12:42:43 +02:00
TabContext.cpp Bug 1191740 - Add originAttributes in TabContext. r=bholley 2015-10-14 10:52:06 +08:00
TabContext.h Bug 1191740 - Add originAttributes in TabContext. r=bholley 2015-10-14 10:52:06 +08:00
TabMessageUtils.cpp Bug 874842 - Return Event instead of nsIDOMEvent 2015-08-12 14:39:31 +03:00
TabMessageUtils.h Bug 1196163 part 2 - Send sizemode as part of UpdateDimensions message to TabChild. r=roc,smaug 2015-08-29 11:12:41 +10:00
TabParent.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
TabParent.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
extensions.js Bug 1214133 - Preload ExtensionContent.jsm to get rid of the overhead. r=fabrice 2015-10-13 17:39:52 +08:00
jar.mn Bug 1190995 - backout 0450f02a2b3b for M1 failures 2015-08-14 17:57:34 -07:00
manifestMessages.js Bug 1171200 - Add means of checking if a document links to a manifest. r=billm 2015-07-30 11:56:12 -04:00
moz.build Bug 1168042, support accesskey redirecting to content process, r=masayuki 2015-09-18 08:19:13 -04:00
nsICachedFileDescriptorListener.h Bug 1182996 - Fix and add missing namespace comments. rs=ehsan 2015-07-13 08:25:42 -07:00
nsIContentChild.cpp Bug 1203426 - Rename StructuredCloneIPCHelper to StructuredCloneData, r=smaug 2015-09-10 21:50:58 +01:00
nsIContentChild.h Bug 1155547, Part 1: Fix unified build breakage in adding new sources under dom/ipc/. r=khuey 2015-07-31 15:25:14 +08:00
nsIContentParent.cpp Bug 1191740 - Add originAttributes in TabContext. r=bholley 2015-10-14 10:52:06 +08:00
nsIContentParent.h Bug 1203426 - Rename StructuredCloneIPCHelper to StructuredCloneData, r=smaug 2015-09-10 21:50:58 +01:00
nsIHangReport.idl Bug 1160142 - For e10s plugin hangs take the minidump of the browser process before we message the chrome UI about the hang. r=billm 2015-06-11 12:25:45 -05:00
nsIRemoteBlob.h Bug 1152551, part 2 - Fix mode lines in dom/. r=jst 2015-05-03 15:32:37 -04:00
preload.js Backed out 2 changesets (bug 1202902) to recking bug 1202902 to be able to reopen inbound on a CLOSED TREE 2015-10-07 14:03:21 +02:00
remote-test.js
test.xul