Move browser test plugin from webkit project to development project.

This commit is contained in:
Grace Kloba
2009-05-14 17:31:45 -07:00
parent 3ffb5c7544
commit fbe47c0ef0
14 changed files with 1308 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
package com.android.sampleplugin;
import android.app.Service;
import android.content.Intent;
import android.os.IBinder;
public class SamplePlugin extends Service {
@Override
public IBinder onBind(Intent intent) {
// TODO Auto-generated method stub
return null;
}
}