Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: src/org/adblockplus/android/AndroidShowNotificationCallback.java

Issue 29329928: Issue 3297 - Fix issues introduced by recent libadblockplus changes and update dependencies (Closed)
Patch Set: MinSDK and copy'n'paste Created Nov. 20, 2015, 12:19 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/org/adblockplus/android/AdblockPlus.java ('k') | src/org/adblockplus/android/ProxyService.java » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/org/adblockplus/android/AndroidShowNotificationCallback.java
diff --git a/src/org/adblockplus/android/AndroidShowNotificationCallback.java b/src/org/adblockplus/android/AndroidShowNotificationCallback.java
new file mode 100644
index 0000000000000000000000000000000000000000..2bacd83fd252b050042b67438b2528dfd3d945f5
--- /dev/null
+++ b/src/org/adblockplus/android/AndroidShowNotificationCallback.java
@@ -0,0 +1,57 @@
+/*
+ * This file is part of Adblock Plus <https://adblockplus.org/>,
+ * Copyright (C) 2006-2015 Eyeo GmbH
+ *
+ * Adblock Plus is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 3 as
+ * published by the Free Software Foundation.
+ *
+ * Adblock Plus is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+package org.adblockplus.android;
+
+import org.adblockplus.libadblockplus.Notification;
+import org.adblockplus.libadblockplus.ShowNotificationCallback;
+
+import android.app.NotificationManager;
+import android.content.Context;
+import android.support.v4.app.NotificationCompat;
+import android.util.Log;
+
+public class AndroidShowNotificationCallback extends ShowNotificationCallback
+{
+ private static final String TAG = Utils.getTag(AndroidShowNotificationCallback.class);
+
+ private final Context context;
+
+ public AndroidShowNotificationCallback(final Context context)
+ {
+ this.context = context;
+ }
+
+ @Override
+ public void showNotificationCallback(final Notification notification)
+ {
+ if (notification != null)
+ {
+ Log.i(TAG, "Received notification: " + notification);
+
+ final NotificationManager notificationManager = (NotificationManager) this.context
+ .getSystemService(Context.NOTIFICATION_SERVICE);
+
+ notificationManager.notify(AdblockPlus.SERVER_NOTIFICATION_ID,
+ new NotificationCompat.Builder(this.context.getApplicationContext())
+ .setSmallIcon(R.drawable.ic_stat_blocking)
+ .setContentTitle(notification.getTitle())
+ .setContentText(notification.getMessageString())
+ .getNotification());
+ }
+ }
+}
« no previous file with comments | « src/org/adblockplus/android/AdblockPlus.java ('k') | src/org/adblockplus/android/ProxyService.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld