From ae4f1841e5ffa922ad80a71c7058c56ec02f1359 Mon Sep 17 00:00:00 2001 From: Andrew McCreight Date: Wed, 23 Nov 2016 09:15:47 -0800 Subject: [PATCH] Bug 1316757, part 1 - Remove state machine user syntax from non-test IPDL files. r=billm The state information in PWebBrowserPersistDocument.ipdl looks like good documentation, so I only commented it out. The other one is trivial so I deleted it. MozReview-Commit-ID: C5SQAOPMnNB --HG-- extra : rebase_source : 0ec19729458838b071156398bf3d1fb908cc6fe4 --- dom/plugins/ipc/PPluginBackgroundDestroyer.ipdl | 3 --- .../webbrowserpersist/PWebBrowserPersistDocument.ipdl | 2 ++ 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/dom/plugins/ipc/PPluginBackgroundDestroyer.ipdl b/dom/plugins/ipc/PPluginBackgroundDestroyer.ipdl index cc8ff558e0d8..d8c552fd86c1 100644 --- a/dom/plugins/ipc/PPluginBackgroundDestroyer.ipdl +++ b/dom/plugins/ipc/PPluginBackgroundDestroyer.ipdl @@ -28,9 +28,6 @@ protocol PPluginBackgroundDestroyer { parent: async __delete__(); - -state DESTROYING: - recv __delete__; }; } // namespace plugins diff --git a/embedding/components/webbrowserpersist/PWebBrowserPersistDocument.ipdl b/embedding/components/webbrowserpersist/PWebBrowserPersistDocument.ipdl index 143af0ebd959..30b0138d2ed5 100644 --- a/embedding/components/webbrowserpersist/PWebBrowserPersistDocument.ipdl +++ b/embedding/components/webbrowserpersist/PWebBrowserPersistDocument.ipdl @@ -73,6 +73,7 @@ child: uint32_t aWrapColumn); async __delete__(); +/* state START: recv Attributes goto MAIN; recv InitFailure goto FAILED; @@ -85,6 +86,7 @@ state MAIN: state FAILED: send __delete__; +*/ }; } // namespace mozilla