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

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

Issue 1399613002: Public glue layer plumbing for View#startActivityForResult (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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: android_webview/java/src/org/chromium/android_webview/FullScreenView.java
diff --git a/android_webview/java/src/org/chromium/android_webview/FullScreenView.java b/android_webview/java/src/org/chromium/android_webview/FullScreenView.java
index 1eb96a4eda3dd97c99e511031b4607bcfac1b2dd..322167f806315f1cb3a25368c2a8e697213a7092 100644
--- a/android_webview/java/src/org/chromium/android_webview/FullScreenView.java
+++ b/android_webview/java/src/org/chromium/android_webview/FullScreenView.java
@@ -5,6 +5,7 @@
package org.chromium.android_webview;
import android.content.Context;
+import android.content.Intent;
import android.content.res.Configuration;
import android.graphics.Canvas;
import android.graphics.Paint;
@@ -230,6 +231,11 @@ public class FullScreenView extends FrameLayout {
}
@Override
+ public void super_startActivityForResult(Intent intent, int requestCode) {
+ // Intentional no-op
hush (inactive) 2015/10/14 01:21:32 We need to support this on FullScreenView, because
sgurun-gerrit only 2015/10/14 17:40:13 Full screen view constructor already receives an A
hush (inactive) 2015/10/14 21:33:59 So the goal here is to support "text processing" f
+ }
+
+ @Override
public boolean awakenScrollBars() {
return FullScreenView.this.awakenScrollBars(0);
}

Powered by Google App Engine
This is Rietveld 408576698