summaryrefslogtreecommitdiffstats
path: root/android_webview/test
diff options
context:
space:
mode:
authorcimamoglu@chromium.org <cimamoglu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-04-30 12:10:58 +0000
committercimamoglu@chromium.org <cimamoglu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-04-30 12:10:58 +0000
commit971b2e973f45bb207dcdb13fcd0b4e0020b89521 (patch)
tree7bf4e9f4dc466463df7a4a92516c617f18fad8af /android_webview/test
parentfea004b7a18a24b8a41e58759195bc48475724b7 (diff)
downloadchromium_src-971b2e973f45bb207dcdb13fcd0b4e0020b89521.zip
chromium_src-971b2e973f45bb207dcdb13fcd0b4e0020b89521.tar.gz
chromium_src-971b2e973f45bb207dcdb13fcd0b4e0020b89521.tar.bz2
Do not attempt to download favicons with 404 status in WebView
This issue was fixed for Chromium (crbug.com/39402). This patch gets the relevant parts of the fixing patch for Android WebView. BUG=39402 Review URL: https://codereview.chromium.org/255503004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@267192 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'android_webview/test')
-rw-r--r--android_webview/test/shell/src/org/chromium/android_webview/shell/AwShellActivity.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/android_webview/test/shell/src/org/chromium/android_webview/shell/AwShellActivity.java b/android_webview/test/shell/src/org/chromium/android_webview/shell/AwShellActivity.java
index 4042c87..a30a72d 100644
--- a/android_webview/test/shell/src/org/chromium/android_webview/shell/AwShellActivity.java
+++ b/android_webview/test/shell/src/org/chromium/android_webview/shell/AwShellActivity.java
@@ -74,6 +74,7 @@ public class AwShellActivity extends Activity {
}
mAwTestContainerView.getAwContents().loadUrl(new LoadUrlParams(startupUrl));
+ AwContents.setShouldDownloadFavicons();
mUrlTextView.setText(startupUrl);
}