Fix BrowserApp class not being found by webkitproxy

This commit is contained in:
Anthony Restaino 2015-05-03 00:11:46 -04:00
parent 51fc8d7f85
commit cb27bf8afa

View File

@ -547,7 +547,7 @@ public class BrowserActivity extends ThemableActivity implements BrowserControll
try {
String host = mPreferences.getProxyHost();
int port = mPreferences.getProxyPort();
WebkitProxy.setProxy(this.getPackageName() + ".BrowserApp", getApplicationContext(),
WebkitProxy.setProxy(BrowserApp.class.getName(), getApplicationContext(),
host, port);
} catch (Exception e) {
Log.d(Constants.TAG, "error enabling web proxying", e);
@ -710,7 +710,7 @@ public class BrowserActivity extends ThemableActivity implements BrowserControll
initializeTor();
} else {
try {
WebkitProxy.resetProxy(mActivity.getPackageName() + ".BrowserApp",
WebkitProxy.resetProxy(BrowserApp.class.getName(),
getApplicationContext());
} catch (Exception e) {
e.printStackTrace();