| OLD | NEW |
| 1 /* | 1 /* |
| 2 * This file is part of Adblock Plus <https://adblockplus.org/>, | 2 * This file is part of Adblock Plus <https://adblockplus.org/>, |
| 3 * Copyright (C) 2006-present eyeo GmbH | 3 * Copyright (C) 2006-present 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.libadblockplus.android.settings; | 18 package org.adblockplus.libadblockplus.android.settings; |
| 19 | 19 |
| 20 import android.content.Context; | 20 import android.content.Context; |
| 21 import android.net.ConnectivityManager; | 21 import android.net.ConnectivityManager; |
| 22 import android.net.NetworkInfo; | 22 import android.net.NetworkInfo; |
| 23 import android.util.Log; | 23 import android.util.Log; |
| 24 | 24 |
| 25 import org.adblockplus.libadblockplus.IsAllowedConnectionCallback; | 25 import org.adblockplus.libadblockplus.IsAllowedConnectionCallback; |
| 26 import org.adblockplus.libadblockplus.android.Utils; | 26 import org.adblockplus.libadblockplus.android.Utils; |
| 27 | 27 |
| 28 public class IsAllowedConnectionCallbackImpl extends IsAllowedConnectionCallback | 28 public class IsAllowedConnectionCallbackImpl implements IsAllowedConnectionCallb
ack |
| 29 { | 29 { |
| 30 private static final String TAG = Utils.getTag(IsAllowedConnectionCallbackImpl
.class); | 30 private static final String TAG = Utils.getTag(IsAllowedConnectionCallbackImpl
.class); |
| 31 | 31 |
| 32 private ConnectivityManager manager; | 32 private ConnectivityManager manager; |
| 33 | 33 |
| 34 public IsAllowedConnectionCallbackImpl(ConnectivityManager manager) | 34 public IsAllowedConnectionCallbackImpl(ConnectivityManager manager) |
| 35 { | 35 { |
| 36 super(); | 36 super(); |
| 37 this.manager = manager; | 37 this.manager = manager; |
| 38 } | 38 } |
| (...skipping 25 matching lines...) Expand all Loading... |
| 64 | 64 |
| 65 if (!connectionType.isRequiredConnection(manager)) | 65 if (!connectionType.isRequiredConnection(manager)) |
| 66 { | 66 { |
| 67 Log.w(TAG, "Current connection type is not allowed for web requests"); | 67 Log.w(TAG, "Current connection type is not allowed for web requests"); |
| 68 return false; | 68 return false; |
| 69 } | 69 } |
| 70 | 70 |
| 71 return true; | 71 return true; |
| 72 } | 72 } |
| 73 } | 73 } |
| OLD | NEW |