Index: components/cronet/android/java/src/org/chromium/net/UrlRequestContext.java |
diff --git a/components/cronet/android/java/src/org/chromium/net/UrlRequestContext.java b/components/cronet/android/java/src/org/chromium/net/UrlRequestContext.java |
index cddd64d73e993d4dc40c32ed56a9c490174c570b..f5341fc9bf70451a436c8b0ed7539447f43114c3 100644 |
--- a/components/cronet/android/java/src/org/chromium/net/UrlRequestContext.java |
+++ b/components/cronet/android/java/src/org/chromium/net/UrlRequestContext.java |
@@ -56,13 +56,16 @@ public abstract class UrlRequestContext { |
public abstract void shutdown(); |
/** |
- * Starts NetLog logging to a file. The NetLog capture mode used is |
- * NetLogCaptureMode::Default(). |
+ * Starts NetLog logging to a file. The NetLog capture mode used is either |
+ * NetLogCaptureMode::Default() or NetLogCaptureMode::IncludeSocketBytes(). |
* @param fileName The complete file path. It must not be empty. If file |
* exists, it is truncated before starting. If actively logging, |
* this method is ignored. |
+ * @param logAll {@code true} to use the NetLogCaptureMode::Default() |
eroman
2015/05/06 17:34:19
Same comment as earlier (this is reversed)
kallasjoki
2015/05/06 17:47:08
Done.
|
+ * logging level. If false, |
+ * NetLogCaptureMode::IncludeSocketBytes() is used instead. |
*/ |
- public abstract void startNetLogToFile(String fileName); |
+ public abstract void startNetLogToFile(String fileName, boolean logAll); |
/** |
* Stops NetLog logging and flushes file to disk. If a logging session is |