| 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-2017 eyeo GmbH | 3 * Copyright (C) 2006-2017 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 |
| (...skipping 13 matching lines...) Expand all Loading... |
| 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 extends IsAllowedConnectionCallback |
| 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(Context context) | 34 public IsAllowedConnectionCallbackImpl(ConnectivityManager manager) |
| 35 { | 35 { |
| 36 super(); | 36 super(); |
| 37 this.manager = (ConnectivityManager) context.getSystemService(Context.CONNEC
TIVITY_SERVICE); | 37 this.manager = manager; |
| 38 } | 38 } |
| 39 | 39 |
| 40 @Override | 40 @Override |
| 41 public boolean isConnectionAllowed(String connection) | 41 public boolean isConnectionAllowed(String connection) |
| 42 { | 42 { |
| 43 Log.d(TAG, "Checking connection: " + connection); | 43 Log.d(TAG, "Checking connection: " + connection); |
| 44 | 44 |
| 45 if (connection == null) | 45 if (connection == null) |
| 46 { | 46 { |
| 47 // required connection type is not specified - any works | 47 // required connection type is not specified - any works |
| (...skipping 16 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 |