/* 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/. */ #ifndef COMM_MAILNEWS_LOCAL_SRC_NSRSSINCOMINGSERVER_H_ #define COMM_MAILNEWS_LOCAL_SRC_NSRSSINCOMINGSERVER_H_ #include "nsIRssIncomingServer.h" #include "nsILocalMailIncomingServer.h" #include "nsIMsgFolderListener.h" #include "nsMailboxServer.h" class nsRssIncomingServer : public nsMailboxServer, public nsIRssIncomingServer, public nsILocalMailIncomingServer, public nsIMsgFolderListener { public: NS_DECL_ISUPPORTS_INHERITED NS_DECL_NSIRSSINCOMINGSERVER NS_DECL_NSILOCALMAILINCOMINGSERVER NS_DECL_NSIMSGFOLDERLISTENER #ifdef MOZ_PANORAMA nsresult CreateRootFolder() override; #endif // MOZ_PANORAMA NS_IMETHOD GetOfflineSupportLevel(int32_t* aSupportLevel) override; NS_IMETHOD GetAccountManagerChrome(nsAString& aResult) override; NS_IMETHOD PerformBiff(nsIMsgWindow* aMsgWindow) override; NS_IMETHOD GetServerRequiresPasswordForBiff( bool* aServerRequiresPasswordForBiff) override; NS_IMETHOD GetCanSearchMessages(bool* canSearchMessages) override; nsRssIncomingServer(); protected: virtual ~nsRssIncomingServer(); nsresult FolderChanged(nsIMsgFolder* aFolder, nsIMsgFolder* aOrigFolder, const char* aAction); nsresult FillInDataSourcePath(const nsAString& aDataSourceName, nsIFile** aLocation); static nsrefcnt gInstanceCount; }; #endif // COMM_MAILNEWS_LOCAL_SRC_NSRSSINCOMINGSERVER_H_