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

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: Change the papameter name 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..bf6b29bfa4fe967fa4487f09400d5f7f15eb73bc 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);
boliu 2017/02/22 02:45:50 document parameter name
yabinh 2017/02/22 03:40:05 Done.
}
@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