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

Unified Diff: device/nfc/android/java/src/org/chromium/device/nfc/NfcImpl.java

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: device/nfc/android/java/src/org/chromium/device/nfc/NfcImpl.java
diff --git a/device/nfc/android/java/src/org/chromium/device/nfc/NfcImpl.java b/device/nfc/android/java/src/org/chromium/device/nfc/NfcImpl.java
index 7552488ed268b7853dc9395f08d9351c0015bfed..b74902e021ba4aaa8bb2c419cbb86338cb7ee859 100644
--- a/device/nfc/android/java/src/org/chromium/device/nfc/NfcImpl.java
+++ b/device/nfc/android/java/src/org/chromium/device/nfc/NfcImpl.java
@@ -19,16 +19,16 @@ import android.os.Build;
import android.os.Process;
import org.chromium.base.Log;
+import org.chromium.device.nfc.mojom.Nfc;
+import org.chromium.device.nfc.mojom.NfcClient;
+import org.chromium.device.nfc.mojom.NfcError;
+import org.chromium.device.nfc.mojom.NfcErrorType;
+import org.chromium.device.nfc.mojom.NfcMessage;
+import org.chromium.device.nfc.mojom.NfcPushOptions;
+import org.chromium.device.nfc.mojom.NfcPushTarget;
+import org.chromium.device.nfc.mojom.NfcWatchOptions;
import org.chromium.mojo.bindings.Callbacks;
import org.chromium.mojo.system.MojoException;
-import org.chromium.mojom.device.nfc.Nfc;
-import org.chromium.mojom.device.nfc.NfcClient;
-import org.chromium.mojom.device.nfc.NfcError;
-import org.chromium.mojom.device.nfc.NfcErrorType;
-import org.chromium.mojom.device.nfc.NfcMessage;
-import org.chromium.mojom.device.nfc.NfcPushOptions;
-import org.chromium.mojom.device.nfc.NfcPushTarget;
-import org.chromium.mojom.device.nfc.NfcWatchOptions;
import java.io.IOException;

Powered by Google App Engine
This is Rietveld 408576698