Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(113)

Side by Side Diff: third_party/WebKit/Source/modules/nfc/NFC.cpp

Issue 2472753003: Move fromJSONString to V8Binding (Closed)
Patch Set: Really swallow exception Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698