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

Delta Between Two Patch Sets: mobile/android/thirdparty/org/adblockplus/browser/UrlInputOpenerPreference.java

Issue 29322610: Issue 2720 - [Adblocking settings] Add the other filter lists category (Closed)
Left Patch Set: Changed screen title Created July 20, 2015, 5 p.m.
Right Patch Set: Last naming nit Created July 31, 2015, 9:36 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « mobile/android/thirdparty/org/adblockplus/browser/UrlInputDialog.java ('k') | no next file » | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
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-2015 Eyeo GmbH 3 * Copyright (C) 2006-2015 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 50
51 @Override 51 @Override
52 protected void onAttachedToActivity() 52 protected void onAttachedToActivity()
53 { 53 {
54 this.setPersistent(false); 54 this.setPersistent(false);
55 } 55 }
56 56
57 @Override 57 @Override
58 protected void onClick() 58 protected void onClick()
59 { 59 {
60 new UrlInputDialog(this.getContext(), UrlInputDialog.Type.ADD_BLOCKING_LIST, this).show(); 60 new UrlInputDialog(this.getContext(), UrlInputDialog.Type.ADD_SUBSCRIPTION, this).show();
61 } 61 }
62 62
63 @Override 63 @Override
64 public void callback(String url) 64 public void callback(String url)
65 { 65 {
66 try 66 try
67 { 67 {
68 if (redirectUrlReadyCallback != null) 68 if (redirectUrlReadyCallback != null)
69 { 69 {
70 final UrlInputDialog.UrlReadyCallback callback = redirectUrlReadyCallbac k.get(); 70 final UrlInputDialog.UrlReadyCallback callback = redirectUrlReadyCallbac k.get();
71 if (callback != null) 71 if (callback != null)
72 { 72 {
73 callback.callback(url); 73 callback.callback(url);
74 } 74 }
75 } 75 }
76 } 76 }
77 catch (Throwable t) 77 catch (Throwable t)
78 { 78 {
79 // we do not care 79 // we do not care
80 } 80 }
81 } 81 }
82 } 82 }
LEFTRIGHT

Powered by Google App Engine
This is Rietveld