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

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

Issue 2038233002: Using ResourceRequestBody as the type of HTTP body outside of //content. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@make-resource-request-body-public
Patch Set: Rebasing... Created 4 years, 6 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/java/src/org/chromium/chrome/browser/ChromeServiceTabLauncher.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/AwWebContentsDelegateAdapter.java
diff --git a/android_webview/java/src/org/chromium/android_webview/AwWebContentsDelegateAdapter.java b/android_webview/java/src/org/chromium/android_webview/AwWebContentsDelegateAdapter.java
index dff2d0e165df7d2aa358d46fddc1fb26c260d281..cb372ae4d1eebe8c20c08f89585504a4e7dd115b 100644
--- a/android_webview/java/src/org/chromium/android_webview/AwWebContentsDelegateAdapter.java
+++ b/android_webview/java/src/org/chromium/android_webview/AwWebContentsDelegateAdapter.java
@@ -24,6 +24,7 @@ import android.webkit.ValueCallback;
import org.chromium.base.ContentUriUtils;
import org.chromium.base.ThreadUtils;
import org.chromium.content_public.browser.InvalidateTypes;
+import org.chromium.content_public.common.ResourceRequestBody;
/**
* Adapts the AwWebContentsDelegate interface to the AwContentsClient interface.
@@ -164,8 +165,8 @@ class AwWebContentsDelegateAdapter extends AwWebContentsDelegate {
}
@Override
- public void openNewTab(String url, String extraHeaders, byte[] postData, int disposition,
- boolean isRendererInitiated) {
+ public void openNewTab(String url, String extraHeaders, ResourceRequestBody postData,
+ int disposition, boolean isRendererInitiated) {
// This is only called in chrome layers.
assert false;
}
« no previous file with comments | « no previous file | chrome/android/java/src/org/chromium/chrome/browser/ChromeServiceTabLauncher.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698