summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/Source/modules/nfc/NavigatorNFC.cpp
blob: 4d634423812ea79cb7ff5685736e1414184ed8d8 (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
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "modules/nfc/NavigatorNFC.h"

#include "core/frame/Navigator.h"
#include "modules/nfc/NFC.h"

namespace blink {

NavigatorNFC::NavigatorNFC()
{
}

const char* NavigatorNFC::supplementName()
{
    return "NavigatorNFC";
}

NavigatorNFC& NavigatorNFC::from(Navigator& navigator)
{
    NavigatorNFC* supplement = static_cast<NavigatorNFC*>(HeapSupplement<Navigator>::from(navigator, supplementName()));
    if (!supplement) {
        supplement = new NavigatorNFC();
        provideTo(navigator, supplementName(), supplement);
    }
    return *supplement;
}

NFC* NavigatorNFC::nfc(Navigator& navigator)
{
    NavigatorNFC& self = NavigatorNFC::from(navigator);
    if (!self.m_nfc) {
        if (!navigator.frame())
            return nullptr;
        self.m_nfc = NFC::create(navigator.frame());
    }
    return self.m_nfc.get();
}

DEFINE_TRACE(NavigatorNFC)
{
    visitor->trace(m_nfc);
    HeapSupplement<Navigator>::trace(visitor);
}

} // namespace blink