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

Unified Diff: services/speech_recognizer/src/org/chromium/mojo/speech_recognizer/SpeechRecognizer.java

Issue 1990833002: Build speech recognizer library. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 4 years, 7 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: services/speech_recognizer/src/org/chromium/mojo/speech_recognizer/SpeechRecognizer.java
diff --git a/services/speech_recognizer/src/org/chromium/mojo/speech_recognizer/SpeechRecognizer.java b/services/speech_recognizer/src/org/chromium/mojo/speech_recognizer/SpeechRecognizer.java
new file mode 100644
index 0000000000000000000000000000000000000000..7914f8adf5a11c3c88eb156e704f6204de21d68e
--- /dev/null
+++ b/services/speech_recognizer/src/org/chromium/mojo/speech_recognizer/SpeechRecognizer.java
@@ -0,0 +1,19 @@
+// 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.
+
+package org.chromium.mojo.speech_recognizer;
+
+import android.content.Context;
+
+import org.chromium.mojo.application.ApplicationRunner;
+import org.chromium.mojo.system.Core;
+import org.chromium.mojo.system.MessagePipeHandle;
+
+final class SpeechRecognizer {
+ public static void mojoMain(
+ Context context, Core core, MessagePipeHandle applicationRequestHandle) {
+ ApplicationRunner.run(
+ new SpeechRecognizerApplicationDelegate(context), core, applicationRequestHandle);
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698