Index: android_webview/java/src/org/chromium/android_webview/AwContents.java |
diff --git a/android_webview/java/src/org/chromium/android_webview/AwContents.java b/android_webview/java/src/org/chromium/android_webview/AwContents.java |
index bbea760efdf5eb67f5d80fda0ff7147249b94c2a..fa623ca64a79638a3a3ba6caadc582b54f11d372 100644 |
--- a/android_webview/java/src/org/chromium/android_webview/AwContents.java |
+++ b/android_webview/java/src/org/chromium/android_webview/AwContents.java |
@@ -2398,8 +2398,10 @@ public class AwContents { |
// Return true if the GeolocationPermissionAPI should be used. |
@CalledByNative |
private boolean useLegacyGeolocationPermissionAPI() { |
- // TODO (michaelbai): Need to verify whether this is correct when release. |
- return mContext.getApplicationInfo().targetSdkVersion <= Build.VERSION_CODES.KITKAT; |
+ // Always return true since we are not ready to swap the geolocation yet. |
+ // TODO: If we decide not to migrate the geolocation, there are some unreachable |
+ // code need to remove. http://crbug.com/396184. |
+ return true; |
} |
//-------------------------------------------------------------------------------------------- |