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

Unified Diff: android_webview/java/src/org/chromium/android_webview/AwContents.java

Issue 2709633002: Make chrome hide keyboard when opening a new window (Closed)
Patch Set: Add a comment Created 3 years, 10 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
« no previous file with comments | « no previous file | chrome/android/javatests/src/org/chromium/chrome/browser/TabsTest.java » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 6c64c0b5ac2df1829bc8b979507591d4204ad06d..cc2975990f93ad7e645e44c8c70ef390c9b4a706 100644
--- a/android_webview/java/src/org/chromium/android_webview/AwContents.java
+++ b/android_webview/java/src/org/chromium/android_webview/AwContents.java
@@ -3232,7 +3232,7 @@ public class AwContents implements SmartClipProvider {
public void onFocusChanged(boolean focused, int direction, Rect previouslyFocusedRect) {
if (isDestroyedOrNoOperation(NO_WARN)) return;
mContainerViewFocused = focused;
- mContentViewCore.onFocusChanged(focused);
+ mContentViewCore.onFocusChanged(focused, false /* hideKeyboardOnBlur */);
}
@Override
« no previous file with comments | « no previous file | chrome/android/javatests/src/org/chromium/chrome/browser/TabsTest.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698