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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright 2012 Google Inc. All Rights Reserved.
2
3 package com.skia;
4
5 import android.content.BroadcastReceiver;
6 import android.content.Context;
7 import android.content.Intent;
8 import com.skia.SkiaIntentService;
9
10 /**
11 * @author borenet@google.com (Eric Boren)
12 *
13 */
14 public class SkiaReceiver extends BroadcastReceiver
15 {
16 @Override
17 public void onReceive(Context context, Intent intent) {
18 Intent skIntent = new Intent(context, SkiaIntentService.class);
19
20 // Forward any command-line arguments to the background service
21 skIntent.putExtras(intent.getExtras());
22
23 // Launch executable
24 context.startService(skIntent);
25 }
26 }
OLDNEW
« 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