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

Unified Diff: services/sensors/org/chromium/mojo/sensors/Sensors.java

Issue 1093033002: Add sensors application to mojo (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Support both SkyDemo and mojo_shell Created 5 years, 8 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/sensors/org/chromium/mojo/sensors/Sensors.java
diff --git a/services/sensors/org/chromium/mojo/sensors/Sensors.java b/services/sensors/org/chromium/mojo/sensors/Sensors.java
new file mode 100644
index 0000000000000000000000000000000000000000..526d78f208232bb375be5247abb4e53f684da6c1
--- /dev/null
+++ b/services/sensors/org/chromium/mojo/sensors/Sensors.java
@@ -0,0 +1,64 @@
+// 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.sensors;
+
+import android.content.Context;
+
+import org.chromium.mojo.application.ApplicationConnection;
+import org.chromium.mojo.application.ApplicationDelegate;
+import org.chromium.mojo.application.ApplicationRunner;
+import org.chromium.mojo.application.ServiceFactoryBinder;
+import org.chromium.mojo.system.Core;
+import org.chromium.mojo.system.MessagePipeHandle;
+import org.chromium.mojom.mojo.Shell;
+import org.chromium.mojom.sensors.SensorService;
+
+/**
+ * Android service application implementing the SensorService interface.
+ */
+public class Sensors implements ApplicationDelegate {
+ private Context mContext;
+
+ public Sensors(Context context) {
+ mContext = context;
+ }
+
+ /**
+ * @see ApplicationDelegate#initialize(Shell, String[], String)
+ */
+ @Override
+ public void initialize(Shell shell, String[] args, String url) {}
+
+ /**
+ * @see ApplicationDelegate#configureIncomingConnection(String, ApplicationConnection)
+ */
+ @Override
+ public boolean configureIncomingConnection(
+ final String requestorUrl, ApplicationConnection connection) {
+ connection.addService(new ServiceFactoryBinder<SensorService>() {
+ @Override
+ public void bindNewInstanceToMessagePipe(MessagePipeHandle pipe) {
+ SensorService.MANAGER.bind(new SensorServiceImpl(mContext), pipe);
+ }
+
+ @Override
+ public String getInterfaceName() {
+ return SensorService.MANAGER.getName();
+ }
+ });
+ return true;
+ }
+
+ /**
+ * @see ApplicationDelegate#quit()
+ */
+ @Override
+ public void quit() {}
+
+ public static void mojoMain(
+ Context context, Core core, MessagePipeHandle applicationRequestHandle) {
+ ApplicationRunner.run(new Sensors(context), core, applicationRequestHandle);
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698