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

Unified Diff: components/cronet/android/java/src/org/chromium/net/ChromiumUrlRequest.java

Issue 586143002: Initial implementation of Cronet Async API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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: components/cronet/android/java/src/org/chromium/net/ChromiumUrlRequest.java
diff --git a/components/cronet/android/java/src/org/chromium/net/ChromiumUrlRequest.java b/components/cronet/android/java/src/org/chromium/net/ChromiumUrlRequest.java
index bcb19d26ee2df6937f22e32c342b54df04bce413..24ad1e6efcc16155891f9596f01953611c937aac 100644
--- a/components/cronet/android/java/src/org/chromium/net/ChromiumUrlRequest.java
+++ b/components/cronet/android/java/src/org/chromium/net/ChromiumUrlRequest.java
@@ -477,12 +477,12 @@ public class ChromiumUrlRequest implements HttpUrlRequest {
private void onCalledByNativeException(Exception e) {
mSinkException = new IOException(
"CalledByNative method has thrown an exception", e);
- Log.e(ChromiumUrlRequestContext.LOG_TAG,
+ Log.e(CronetUrlRequestContext.LOG_TAG,
"Exception in CalledByNative method", e);
try {
cancel();
} catch (Exception cancel_exception) {
- Log.e(ChromiumUrlRequestContext.LOG_TAG,
+ Log.e(CronetUrlRequestContext.LOG_TAG,
"Exception trying to cancel request", cancel_exception);
}
}

Powered by Google App Engine
This is Rietveld 408576698