From 3c90952036a5ff7ddb2946c643f1a0bf1c31d53a Mon Sep 17 00:00:00 2001 From: Jonathan Dixon Date: Tue, 28 Feb 2012 18:45:06 +0000 Subject: Refactor WebView to be a thin proxy class Splits interface and implementation; all client calls are forwarded to an abstract WebViewProvider interface, and the existing implementation moved into the WebViewClassic implementor of this interface. Originally taken from a snapshot from the development branch, by: git diff HEAD 9a4c328a54cc05e5 | git apply - but then rebased to keep up to date with master Interdepends on webkit and Browser changes: https://android-git.corp.google.com/g/158979 https://android-git.corp.google.com/g/167911 Change-Id: I91403f32654ff308934e95c832d17b292a7d9b2e --- core/java/android/webkit/HTML5Audio.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core/java/android/webkit/HTML5Audio.java') diff --git a/core/java/android/webkit/HTML5Audio.java b/core/java/android/webkit/HTML5Audio.java index aedecf034c29..8e1f57322864 100644 --- a/core/java/android/webkit/HTML5Audio.java +++ b/core/java/android/webkit/HTML5Audio.java @@ -92,7 +92,7 @@ class HTML5Audio extends Handler private class IsPrivateBrowsingEnabledGetter { private boolean mIsReady; private boolean mIsPrivateBrowsingEnabled; - IsPrivateBrowsingEnabledGetter(Looper uiThreadLooper, final WebView webView) { + IsPrivateBrowsingEnabledGetter(Looper uiThreadLooper, final WebViewClassic webView) { new Handler(uiThreadLooper).post(new Runnable() { @Override public void run() { -- cgit v1.2.3