OLD | NEW |
1 /* | 1 /* |
2 * This file is part of Adblock Plus <http://adblockplus.org/>, | 2 * This file is part of Adblock Plus <http://adblockplus.org/>, |
3 * Copyright (C) 2006-2014 Eyeo GmbH | 3 * Copyright (C) 2006-2014 Eyeo GmbH |
4 * | 4 * |
5 * Adblock Plus is free software: you can redistribute it and/or modify | 5 * Adblock Plus is free software: you can redistribute it and/or modify |
6 * it under the terms of the GNU General Public License version 3 as | 6 * it under the terms of the GNU General Public License version 3 as |
7 * published by the Free Software Foundation. | 7 * published by the Free Software Foundation. |
8 * | 8 * |
9 * Adblock Plus is distributed in the hope that it will be useful, | 9 * Adblock Plus is distributed in the hope that it will be useful, |
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
12 * GNU General Public License for more details. | 12 * GNU General Public License for more details. |
13 * | 13 * |
14 * You should have received a copy of the GNU General Public License | 14 * You should have received a copy of the GNU General Public License |
15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. | 15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. |
16 */ | 16 */ |
17 | 17 |
18 package org.adblockplus.android; | 18 package org.adblockplus.android; |
19 | 19 |
20 import java.util.ArrayList; | 20 import java.util.ArrayList; |
21 import java.util.List; | 21 import java.util.List; |
22 | 22 |
23 import org.adblockplus.android.updater.AlarmReceiver; | |
24 | |
25 import android.app.AlertDialog; | 23 import android.app.AlertDialog; |
26 import android.app.Dialog; | 24 import android.app.Dialog; |
27 import android.content.ComponentName; | 25 import android.content.ComponentName; |
28 import android.content.DialogInterface; | 26 import android.content.DialogInterface; |
29 import android.content.Intent; | 27 import android.content.Intent; |
30 import android.content.ServiceConnection; | 28 import android.content.ServiceConnection; |
31 import android.content.SharedPreferences; | 29 import android.content.SharedPreferences; |
32 import android.os.Build; | 30 import android.os.Build; |
33 import android.os.Bundle; | 31 import android.os.Bundle; |
34 import android.os.IBinder; | 32 import android.os.IBinder; |
(...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
267 Log.d(TAG, "Proxy service connected"); | 265 Log.d(TAG, "Proxy service connected"); |
268 } | 266 } |
269 | 267 |
270 public void onServiceDisconnected(ComponentName className) | 268 public void onServiceDisconnected(ComponentName className) |
271 { | 269 { |
272 proxyService = null; | 270 proxyService = null; |
273 Log.d(TAG, "Proxy service disconnected"); | 271 Log.d(TAG, "Proxy service disconnected"); |
274 } | 272 } |
275 }; | 273 }; |
276 } | 274 } |
OLD | NEW |