summaryrefslogtreecommitdiff
path: root/chromium/java/com/android/webview
diff options
context:
space:
mode:
authorKristian Monsen <kristianm@google.com>2013-08-30 17:28:59 -0700
committerKristian Monsen <kristianm@google.com>2013-08-31 01:27:10 +0000
commit1c461659158e85411f91076b0c81c5e5a72c2106 (patch)
treee2c0f3082b44c4fbdf7a7c6b8e95c559f75ce555 /chromium/java/com/android/webview
parent5be0edbd27f9402ee53ab7d6dc16a06de540325c (diff)
downloadwebview-1c461659158e85411f91076b0c81c5e5a72c2106.tar.gz
Don't check thread access for HierarchyHandler methods
We don't implement them anyway. I would like to remove the interface, but not sure if it is worth the trouble with all the branches. Fix for bug 10545918 Change-Id: Ica17857ab43f9d01640483efdbdfce7feffde9d1 (cherry picked from commit e31af40d99db027e63b70be18f83a481c6a7a967)
Diffstat (limited to 'chromium/java/com/android/webview')
-rw-r--r--chromium/java/com/android/webview/chromium/WebViewChromium.java2
1 files changed, 0 insertions, 2 deletions
diff --git a/chromium/java/com/android/webview/chromium/WebViewChromium.java b/chromium/java/com/android/webview/chromium/WebViewChromium.java
index 5c77d22..ab1a8d0 100644
--- a/chromium/java/com/android/webview/chromium/WebViewChromium.java
+++ b/chromium/java/com/android/webview/chromium/WebViewChromium.java
@@ -832,13 +832,11 @@ class WebViewChromium implements WebViewProvider,
@Override
public void dumpViewHierarchyWithProperties(BufferedWriter out, int level) {
- checkThread();
UnimplementedWebViewApi.invoke();
}
@Override
public View findHierarchyView(String className, int hashCode) {
- checkThread();
UnimplementedWebViewApi.invoke();
return null;
}