Commit 1649ce63 authored by gsennton's avatar gsennton Committed by Commit bot

Fix loadUrl for javascript urls.

A recent update
https://codereview.chromium.org/1022993002
broke the loading of javascript URLs. This patch reverts only the part
of the update which is broken.

BUG=489259

Review URL: https://codereview.chromium.org/1131083004

Cr-Commit-Position: refs/heads/master@{#330507}
parent dcd7aad1
...@@ -1301,8 +1301,7 @@ public class AwContents implements SmartClipProvider, ...@@ -1301,8 +1301,7 @@ public class AwContents implements SmartClipProvider,
if (url == null) { if (url == null) {
return; return;
} }
LoadUrlParams params = new LoadUrlParams(url); loadUrl(url, null);
loadUrl(params);
} }
/** /**
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment