summaryrefslogtreecommitdiffstats
path: root/android_webview/test
diff options
context:
space:
mode:
authorhush <hush@chromium.org>2015-10-21 13:39:09 -0700
committerCommit bot <commit-bot@chromium.org>2015-10-21 20:41:27 +0000
commita58f351e3e6cc0aceac9f46802c7693c6a562557 (patch)
treee28a35d669b809e80912f254f151e4793ec1b597 /android_webview/test
parentdbaa2f075b3813bdd185132120b24aec20b23a62 (diff)
downloadchromium_src-a58f351e3e6cc0aceac9f46802c7693c6a562557.zip
chromium_src-a58f351e3e6cc0aceac9f46802c7693c6a562557.tar.gz
chromium_src-a58f351e3e6cc0aceac9f46802c7693c6a562557.tar.bz2
Public glue layer plumbing for View#startActivityForResult
BUG=521027 Review URL: https://codereview.chromium.org/1399613002 Cr-Commit-Position: refs/heads/master@{#355390}
Diffstat (limited to 'android_webview/test')
-rw-r--r--android_webview/test/shell/src/org/chromium/android_webview/test/AwTestContainerView.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/android_webview/test/shell/src/org/chromium/android_webview/test/AwTestContainerView.java b/android_webview/test/shell/src/org/chromium/android_webview/test/AwTestContainerView.java
index 223ae71..ac86473 100644
--- a/android_webview/test/shell/src/org/chromium/android_webview/test/AwTestContainerView.java
+++ b/android_webview/test/shell/src/org/chromium/android_webview/test/AwTestContainerView.java
@@ -5,6 +5,7 @@
package org.chromium.android_webview.test;
import android.content.Context;
+import android.content.Intent;
import android.content.res.Configuration;
import android.graphics.Canvas;
import android.graphics.PixelFormat;
@@ -510,5 +511,8 @@ public class AwTestContainerView extends FrameLayout {
public int super_getScrollBarStyle() {
return AwTestContainerView.super.getScrollBarStyle();
}
+
+ @Override
+ public void super_startActivityForResult(Intent intent, int requestCode) {}
}
}