/src/mozilla-central/toolkit/components/sessionstore/nsSessionStoreUtils.h
Line | Count | Source (jump to first uncovered line) |
1 | | /* This Source Code Form is subject to the terms of the Mozilla Public |
2 | | * License, v. 2.0. If a copy of the MPL was not distributed with this |
3 | | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
4 | | |
5 | | #ifndef nsSessionStoreUtils_h |
6 | | #define nsSessionStoreUtils_h |
7 | | |
8 | | #include "nsCycleCollectionParticipant.h" |
9 | | #include "nsISessionStoreUtils.h" |
10 | | #include "nsIDOMEventListener.h" |
11 | | #include "nsCOMPtr.h" |
12 | | |
13 | | #define NS_SESSIONSTOREUTILS_CID \ |
14 | | {0xd713b4be, 0x8285, 0x4cab, {0x9c, 0x0e, 0x0b, 0xbc, 0x38, 0xbf, 0xb9, 0x3c}} |
15 | | |
16 | | #define NS_SESSIONSTOREUTILS_CONTRACTID \ |
17 | | "@mozilla.org/browser/sessionstore/utils;1" |
18 | | |
19 | | class nsSessionStoreUtils final : public nsISessionStoreUtils |
20 | | { |
21 | | public: |
22 | | NS_DECL_NSISESSIONSTOREUTILS |
23 | | NS_DECL_ISUPPORTS |
24 | | |
25 | | private: |
26 | 0 | ~nsSessionStoreUtils() { } |
27 | | }; |
28 | | |
29 | | #endif // nsSessionStoreUtils_h |