Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(160)

Unified Diff: content/browser/web_contents/web_contents_android.cc

Issue 1347543002: [Android] Fix refresh keyboard shortcut behavior. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/browser/web_contents/web_contents_android.cc
diff --git a/content/browser/web_contents/web_contents_android.cc b/content/browser/web_contents/web_contents_android.cc
index ff58da2f893e161c6e50ca56b66b12bc16f0087d..cf019979dca2943b4283b47f7057c64581b29bb0 100644
--- a/content/browser/web_contents/web_contents_android.cc
+++ b/content/browser/web_contents/web_contents_android.cc
@@ -351,6 +351,11 @@ jboolean WebContentsAndroid::IsShowingInterstitialPage(JNIEnv* env,
return web_contents_->ShowingInterstitialPage();
}
+jboolean WebContentsAndroid::FocusLocationBarByDefault(JNIEnv* env,
+ jobject obj) {
+ return web_contents_->FocusLocationBarByDefault();
+}
+
jboolean WebContentsAndroid::IsRenderWidgetHostViewReady(
JNIEnv* env,
jobject obj) {

Powered by Google App Engine
This is Rietveld 408576698