Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
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 :
12 : #include "nsIWebBrowserPersistDocument.h"
13 :
14 : namespace mozilla {
15 :
16 0 : class WebBrowserPersistResourcesChild final
17 : : public PWebBrowserPersistResourcesChild
18 : , public nsIWebBrowserPersistResourceVisitor
19 : {
20 : public:
21 : WebBrowserPersistResourcesChild();
22 :
23 : NS_DECL_NSIWEBBROWSERPERSISTRESOURCEVISITOR
24 : NS_DECL_ISUPPORTS
25 : private:
26 : virtual ~WebBrowserPersistResourcesChild();
27 : };
28 :
29 : } // namespace mozilla
30 :
31 : #endif // WebBrowserPersistDocumentChild_h__
|