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

Unified Diff: android_webview/native/aw_contents_background_thread_client.cc

Issue 2863233002: [WebView] Move files from native to browser (Closed)
Patch Set: Created 3 years, 7 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/native/aw_contents_background_thread_client.cc
diff --git a/android_webview/native/aw_contents_background_thread_client.cc b/android_webview/native/aw_contents_background_thread_client.cc
deleted file mode 100644
index d2fa3de8d2ccb714bd808a2d87a7b9a27675ebe2..0000000000000000000000000000000000000000
--- a/android_webview/native/aw_contents_background_thread_client.cc
+++ /dev/null
@@ -1,29 +0,0 @@
-// Copyright 2015 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "android_webview/native/aw_contents_background_thread_client.h"
-
-#include "jni/AwContentsBackgroundThreadClient_jni.h"
-
-using base::android::JavaRef;
-
-namespace android_webview {
-
-// static
-base::android::ScopedJavaLocalRef<jobject>
-AwContentsBackgroundThreadClient::shouldInterceptRequest(
- JNIEnv* env,
- const JavaRef<jobject>& obj,
- const JavaRef<jstring>& url,
- jboolean isMainFrame,
- jboolean hasUserGesture,
- const JavaRef<jstring>& method,
- const JavaRef<jobjectArray>& requestHeaderNames,
- const JavaRef<jobjectArray>& requestHeaderValues) {
- return Java_AwContentsBackgroundThreadClient_shouldInterceptRequestFromNative(
- env, obj, url, isMainFrame, hasUserGesture, method, requestHeaderNames,
- requestHeaderValues);
-}
-
-} // namespace android_webview

Powered by Google App Engine
This is Rietveld 408576698