Bug 1550519 - Show a translucent parent highlight when a subgrid is highlighted....
[gecko.git] / dom / base / nsStructuredCloneContainer.h
blobf8a3d8ac5bd89fa6e5a31d800e268bb51a6da81f
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
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/. */
7 #ifndef nsStructuredCloneContainer_h__
8 #define nsStructuredCloneContainer_h__
10 #include "nsIStructuredCloneContainer.h"
11 #include "mozilla/Attributes.h"
12 #include "mozilla/dom/ipc/StructuredCloneData.h"
14 #define NS_STRUCTUREDCLONECONTAINER_CONTRACTID \
15 "@mozilla.org/docshell/structured-clone-container;1"
16 #define NS_STRUCTUREDCLONECONTAINER_CID \
17 { /* 38bd0634-0fd4-46f0-b85f-13ced889eeec */ \
18 0x38bd0634, 0x0fd4, 0x46f0, { \
19 0xb8, 0x5f, 0x13, 0xce, 0xd8, 0x89, 0xee, 0xec \
20 } \
23 class nsStructuredCloneContainer final
24 : public nsIStructuredCloneContainer,
25 public mozilla::dom::ipc::StructuredCloneData {
26 public:
27 nsStructuredCloneContainer();
29 NS_DECL_ISUPPORTS
30 NS_DECL_NSISTRUCTUREDCLONECONTAINER
32 private:
33 ~nsStructuredCloneContainer();
35 uint32_t mVersion;
38 #endif