summaryrefslogtreecommitdiffstats
path: root/comm/mailnews/imap/public/nsIImapOfflineSync.idl
diff options
context:
space:
mode:
Diffstat (limited to 'comm/mailnews/imap/public/nsIImapOfflineSync.idl')
-rw-r--r--comm/mailnews/imap/public/nsIImapOfflineSync.idl19
1 files changed, 19 insertions, 0 deletions
diff --git a/comm/mailnews/imap/public/nsIImapOfflineSync.idl b/comm/mailnews/imap/public/nsIImapOfflineSync.idl
new file mode 100644
index 0000000000..c7f55cfa9c
--- /dev/null
+++ b/comm/mailnews/imap/public/nsIImapOfflineSync.idl
@@ -0,0 +1,19 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
+
+#include "nsISupports.idl"
+
+interface nsIMsgFolder;
+interface nsIMsgWindow;
+interface nsIUrlListener;
+
+[scriptable, uuid(ffb683c5-f2c5-490a-b569-2f6b0de0a241)]
+interface nsIImapOfflineSync : nsISupports {
+ void init(in nsIMsgWindow window,
+ in nsIUrlListener listener,
+ in nsIMsgFolder folder,
+ in bool isPseudoOffline);
+
+ void processNextOperation();
+};