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

Side by Side Diff: libadblockplus-android-settings/src/org/adblockplus/libadblockplus/android/settings/IsAllowedConnectionCallbackImpl.java

Issue 29413555: Issue 5145 - Add test for IsAllowedConnectionCallbackImpl (Closed)
Patch Set: Created April 15, 2017, 1:55 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
OLDNEW
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
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)
anton 2017/04/15 13:58:03 minor change (taking into account law of demeter).
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld