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

Unified Diff: third_party/WebKit/Source/modules/nfc/NFC.h

Issue 2361813004: Mojo Java bindings: org.chromium.mojom -> org.chromium (Closed)
Patch Set: Created 4 years, 3 months 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/modules/nfc/NFC.h
diff --git a/third_party/WebKit/Source/modules/nfc/NFC.h b/third_party/WebKit/Source/modules/nfc/NFC.h
index 3a4165289dd4c8ade8a68007c0ea48ebf75b0c21..d2d0843e0d88a3fd799886866260b811bdf947b9 100644
--- a/third_party/WebKit/Source/modules/nfc/NFC.h
+++ b/third_party/WebKit/Source/modules/nfc/NFC.h
@@ -26,7 +26,7 @@ class NFC final
, public ScriptWrappable
, public PageVisibilityObserver
, public ContextLifecycleObserver
- , public device::nfc::blink::NFCClient {
+ , public device::nfc::mojom::blink::NFCClient {
DEFINE_WRAPPERTYPEINFO();
USING_GARBAGE_COLLECTED_MIXIN(NFC);
USING_PRE_FINALIZER(NFC, dispose);
@@ -63,16 +63,16 @@ public:
DECLARE_VIRTUAL_TRACE();
private:
- void OnRequestCompleted(ScriptPromiseResolver*, device::nfc::blink::NFCErrorPtr);
+ void OnRequestCompleted(ScriptPromiseResolver*, device::nfc::mojom::blink::NFCErrorPtr);
void OnConnectionError();
- // device::nfc::blink::NFCClient implementation.
- void OnWatch(mojo::WTFArray<uint32_t> ids, device::nfc::blink::NFCMessagePtr) override;
+ // device::nfc::mojom::blink::NFCClient implementation.
+ void OnWatch(mojo::WTFArray<uint32_t> ids, device::nfc::mojom::blink::NFCMessagePtr) override;
private:
explicit NFC(LocalFrame*);
- device::nfc::blink::NFCPtr m_nfc;
- mojo::Binding<device::nfc::blink::NFCClient> m_client;
+ device::nfc::mojom::blink::NFCPtr m_nfc;
+ mojo::Binding<device::nfc::mojom::blink::NFCClient> m_client;
HeapHashSet<Member<ScriptPromiseResolver>> m_requests;
};

Powered by Google App Engine
This is Rietveld 408576698