Index: platform_tools/android/app/src/com/skia/SkiaReceiver.java |
diff --git a/platform_tools/android/app/src/com/skia/SkiaReceiver.java b/platform_tools/android/app/src/com/skia/SkiaReceiver.java |
deleted file mode 100644 |
index b62a979051e2d2f1c132b54bd6f8453f5047749e..0000000000000000000000000000000000000000 |
--- a/platform_tools/android/app/src/com/skia/SkiaReceiver.java |
+++ /dev/null |
@@ -1,26 +0,0 @@ |
-// Copyright 2012 Google Inc. All Rights Reserved. |
- |
-package com.skia; |
- |
-import android.content.BroadcastReceiver; |
-import android.content.Context; |
-import android.content.Intent; |
-import com.skia.SkiaIntentService; |
- |
-/** |
- * @author borenet@google.com (Eric Boren) |
- * |
- */ |
-public class SkiaReceiver extends BroadcastReceiver |
-{ |
- @Override |
- public void onReceive(Context context, Intent intent) { |
- Intent skIntent = new Intent(context, SkiaIntentService.class); |
- |
- // Forward any command-line arguments to the background service |
- skIntent.putExtras(intent.getExtras()); |
- |
- // Launch executable |
- context.startService(skIntent); |
- } |
-} |