Bug 1658791: enable "dom/base/test/test_setting_opener.html" for xorigin iframes...
[gecko.git] / xpcom / glue / XREAppData.cpp
blobb42ce04398eef1bfef26dbaebeee99c4bb054d9e
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 #include "mozilla/XREAppData.h"
8 #include "nsCRTGlue.h"
10 namespace mozilla {
12 XREAppData& XREAppData::operator=(const StaticXREAppData& aOther) {
13 vendor = aOther.vendor;
14 name = aOther.name;
15 remotingName = aOther.remotingName;
16 version = aOther.version;
17 buildID = aOther.buildID;
18 ID = aOther.ID;
19 copyright = aOther.copyright;
20 flags = aOther.flags;
21 minVersion = aOther.minVersion;
22 maxVersion = aOther.maxVersion;
23 crashReporterURL = aOther.crashReporterURL;
24 profile = aOther.profile;
25 UAName = aOther.UAName;
26 sourceURL = aOther.sourceURL;
27 updateURL = aOther.updateURL;
29 return *this;
32 XREAppData& XREAppData::operator=(const XREAppData& aOther) = default;
34 } // namespace mozilla