Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 87be9ba1 authored by Jason Monk's avatar Jason Monk Committed by Android (Google) Code Review
Browse files

Merge "Fix reference to ProxyInfo extra"

parents 37dd8220 7dab6145
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -155,9 +155,6 @@ public class ProxyInfo implements Parcelable {
            mHost = source.getHost();
            mPort = source.getPort();
            mPacFileUrl = source.mPacFileUrl;
            if (mPacFileUrl == null) {
                mPacFileUrl = Uri.EMPTY;
            }
            mExclusionList = source.getExclusionListAsString();
            mParsedExclusionList = source.mParsedExclusionList;
        } else {
+1 −1
Original line number Diff line number Diff line
@@ -13837,7 +13837,7 @@ public final class ActivityManagerService extends ActivityManagerNative
        }
        if (Proxy.PROXY_CHANGE_ACTION.equals(intent.getAction())) {
            ProxyInfo proxy = intent.getParcelableExtra("proxy");
            ProxyInfo proxy = intent.getParcelableExtra(Proxy.EXTRA_PROXY_INFO);
            mHandler.sendMessage(mHandler.obtainMessage(UPDATE_HTTP_PROXY_MSG, proxy));
        }