WebBrowserPersistResourcesChild.h (879B)
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- 2 * 3 * This Source Code Form is subject to the terms of the Mozilla Public 4 * License, v. 2.0. If a copy of the MPL was not distributed with this 5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 6 7 #ifndef WebBrowserPersistResourcesChild_h__ 8 #define WebBrowserPersistResourcesChild_h__ 9 10 #include "mozilla/PWebBrowserPersistResourcesChild.h" 11 #include "nsIWebBrowserPersistDocument.h" 12 13 namespace mozilla { 14 15 class WebBrowserPersistResourcesChild final 16 : public PWebBrowserPersistResourcesChild, 17 public nsIWebBrowserPersistResourceVisitor { 18 public: 19 WebBrowserPersistResourcesChild(); 20 21 NS_DECL_NSIWEBBROWSERPERSISTRESOURCEVISITOR 22 NS_DECL_ISUPPORTS 23 private: 24 virtual ~WebBrowserPersistResourcesChild(); 25 }; 26 27 } // namespace mozilla 28 29 #endif // WebBrowserPersistDocumentChild_h__