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 |
deleted file mode 100644 |
index 345326a7d96c7611c4960164a570b4b71ca5fda0..0000000000000000000000000000000000000000 |
--- a/services/sensors/org/chromium/mojo/sensors/Sensors.java |
+++ /dev/null |
@@ -1,64 +0,0 @@ |
-// 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) { |
- 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); |
- } |
-} |