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

Unified Diff: components/cronet/android/cronet_url_request_context_adapter.h

Issue 1093793002: Allow setting Cronet NetLog level to LOG_ALL (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix a doc comment that didn't get properly updated Created 5 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: components/cronet/android/cronet_url_request_context_adapter.h
diff --git a/components/cronet/android/cronet_url_request_context_adapter.h b/components/cronet/android/cronet_url_request_context_adapter.h
index 73197333e3f491e851aa425e36bc87143a2cab68..a1f64c28e0b22a0a1a61c3883400ccc4ef0ff4db 100644
--- a/components/cronet/android/cronet_url_request_context_adapter.h
+++ b/components/cronet/android/cronet_url_request_context_adapter.h
@@ -58,7 +58,8 @@ class CronetURLRequestContextAdapter {
net::URLRequestContext* GetURLRequestContext();
- void StartNetLogToFile(JNIEnv* env, jobject jcaller, jstring jfile_name);
+ void StartNetLogToFile(JNIEnv* env, jobject jcaller, jstring jfile_name,
+ jboolean jlog_all);
void StopNetLog(JNIEnv* env, jobject jcaller);
@@ -81,7 +82,8 @@ class CronetURLRequestContextAdapter {
scoped_refptr<base::SingleThreadTaskRunner> GetNetworkTaskRunner() const;
- void StartNetLogToFileOnNetworkThread(const std::string& file_name);
+ void StartNetLogToFileOnNetworkThread(const std::string& file_name,
+ bool log_all);
void StopNetLogOnNetworkThread();

Powered by Google App Engine
This is Rietveld 408576698