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

Unified Diff: platform_tools/android/app/src/com/skia/SkiaReceiver.java

Issue 22617002: Update Skia Android tools. (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: more fixes to make the bots happy Created 7 years, 4 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: 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);
- }
-}
« no previous file with comments | « platform_tools/android/app/src/com/skia/SkiaIntentService.java ('k') | platform_tools/android/bin/android_gdb » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698