summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcin Kosiba <mkosiba@google.com>2014-09-01 08:50:25 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2014-09-01 08:50:25 +0000
commit25d928f687408058f007051878574ea66691d9dc (patch)
tree1d6b0a6bf95285b0d15a1fcf4c9cd229c3c562e0
parent5ddbe722befa58db3b14bcbec55bf5313cd80962 (diff)
parent3c4b2273accf835a407a1b689be69c74f2efc4db (diff)
downloadbase-25d928f687408058f007051878574ea66691d9dc.tar.gz
Merge "Update WebViewFactory.java to compile in AOSP."
-rw-r--r--core/java/android/webkit/WebViewFactory.java8
1 files changed, 6 insertions, 2 deletions
diff --git a/core/java/android/webkit/WebViewFactory.java b/core/java/android/webkit/WebViewFactory.java
index 732518d71c6d..56849f31673a 100644
--- a/core/java/android/webkit/WebViewFactory.java
+++ b/core/java/android/webkit/WebViewFactory.java
@@ -66,6 +66,11 @@ public final class WebViewFactory {
return false; // User has not modifed Developer Settings
}
+ public static String getWebViewPackageName() {
+ // TODO: Make this dynamic based on resource configuration.
+ return "com.android.webview";
+ }
+
static WebViewFactoryProvider getProvider() {
synchronized (sProviderLock) {
// For now the main purpose of this function (and the factory abstraction) is to keep
@@ -103,8 +108,7 @@ public final class WebViewFactory {
return (Class<WebViewFactoryProvider>) Class.forName(CHROMIUM_WEBVIEW_FACTORY, true,
clazzLoader);
} catch (PackageManager.NameNotFoundException e) {
- Log.e(LOGTAG, "Chromium WebView package does not exist");
- return (Class<WebViewFactoryProvider>) Class.forName(NULL_WEBVIEW_FACTORY);
+ throw new ClassNotFoundException("Chromium WebView package does not exist", e);
}
}
}