Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / xwalk / runtime / android / core_internal / src / org / xwalk / core / internal / XWalkNotificationService.java
index 61efb00..80e711d 100644 (file)
@@ -10,9 +10,9 @@ import android.graphics.Bitmap;
 interface XWalkNotificationService {
     public void setBridge(XWalkContentsClientBridge bridge);
     public void showNotification(
-            String title, String message, String replaceId, int notificationId, long delegate);
+            String title, String message, String replaceId, int notificationId);
     public void updateNotificationIcon(int notificationId, Bitmap icon);
-    public void cancelNotification(int notificationId, long delegate);
+    public void cancelNotification(int notificationId);
     public void shutdown();
     public boolean maybeHandleIntent(Intent intent);
 }