| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "modules/nfc/NFC.h" | 5 #include "modules/nfc/NFC.h" |
| 6 | 6 |
| 7 #include "bindings/core/v8/JSONValuesForV8.h" | |
| 8 #include "bindings/core/v8/ScriptPromiseResolver.h" | 7 #include "bindings/core/v8/ScriptPromiseResolver.h" |
| 9 #include "bindings/core/v8/V8ArrayBuffer.h" | 8 #include "bindings/core/v8/V8ArrayBuffer.h" |
| 10 #include "bindings/core/v8/V8StringResource.h" | 9 #include "bindings/core/v8/V8StringResource.h" |
| 11 #include "core/dom/DOMArrayBuffer.h" | 10 #include "core/dom/DOMArrayBuffer.h" |
| 12 #include "core/dom/DOMException.h" | 11 #include "core/dom/DOMException.h" |
| 13 #include "core/dom/Document.h" | 12 #include "core/dom/Document.h" |
| 14 #include "core/dom/ExceptionCode.h" | 13 #include "core/dom/ExceptionCode.h" |
| 15 #include "core/frame/LocalDOMWindow.h" | 14 #include "core/frame/LocalDOMWindow.h" |
| 16 #include "modules/nfc/NFCError.h" | 15 #include "modules/nfc/NFCError.h" |
| 17 #include "modules/nfc/NFCMessage.h" | 16 #include "modules/nfc/NFCMessage.h" |
| (...skipping 568 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 586 // TODO(shalamov): Not implemented. | 585 // TODO(shalamov): Not implemented. |
| 587 } | 586 } |
| 588 | 587 |
| 589 DEFINE_TRACE(NFC) { | 588 DEFINE_TRACE(NFC) { |
| 590 PageVisibilityObserver::trace(visitor); | 589 PageVisibilityObserver::trace(visitor); |
| 591 ContextLifecycleObserver::trace(visitor); | 590 ContextLifecycleObserver::trace(visitor); |
| 592 visitor->trace(m_requests); | 591 visitor->trace(m_requests); |
| 593 } | 592 } |
| 594 | 593 |
| 595 } // namespace blink | 594 } // namespace blink |
| OLD | NEW |