summaryrefslogtreecommitdiffstats
path: root/dom/workers/WorkerChannelInfo.cpp
blob: cea6acf1ef13d818bdf641dade700220714ac4cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

#include "WorkerChannelInfo.h"
#include "mozilla/dom/BrowsingContext.h"

namespace mozilla::dom {

// WorkerChannelLoadInfo

NS_IMPL_ISUPPORTS(WorkerChannelLoadInfo, nsIWorkerChannelLoadInfo)

NS_IMETHODIMP
WorkerChannelLoadInfo::GetWorkerAssociatedBrowsingContextID(uint64_t* aResult) {
  *aResult = mWorkerAssociatedBrowsingContextID;
  return NS_OK;
}

NS_IMETHODIMP
WorkerChannelLoadInfo::SetWorkerAssociatedBrowsingContextID(uint64_t aID) {
  mWorkerAssociatedBrowsingContextID = aID;
  return NS_OK;
}

NS_IMETHODIMP
WorkerChannelLoadInfo::GetWorkerAssociatedBrowsingContext(
    dom::BrowsingContext** aResult) {
  *aResult = BrowsingContext::Get(mWorkerAssociatedBrowsingContextID).take();
  return NS_OK;
}

// WorkerChannelInfo

NS_IMPL_ISUPPORTS(WorkerChannelInfo, nsIWorkerChannelInfo)

WorkerChannelInfo::WorkerChannelInfo(uint64_t aChannelID,
                                     uint64_t aBrowsingContextID)
    : mChannelID(aChannelID) {
  mLoadInfo = new WorkerChannelLoadInfo();
  mLoadInfo->SetWorkerAssociatedBrowsingContextID(aBrowsingContextID);
}

NS_IMETHODIMP
WorkerChannelInfo::SetLoadInfo(nsIWorkerChannelLoadInfo* aLoadInfo) {
  MOZ_ASSERT(aLoadInfo);
  mLoadInfo = aLoadInfo;
  return NS_OK;
}

NS_IMETHODIMP
WorkerChannelInfo::GetLoadInfo(nsIWorkerChannelLoadInfo** aLoadInfo) {
  *aLoadInfo = do_AddRef(mLoadInfo).take();
  return NS_OK;
}

NS_IMETHODIMP
WorkerChannelInfo::GetChannelId(uint64_t* aChannelID) {
  NS_ENSURE_ARG_POINTER(aChannelID);
  *aChannelID = mChannelID;
  return NS_OK;
}

}  // end of namespace mozilla::dom