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

Unified Diff: net/base/load_log.h

Issue 518042: Log the results of proxy resolution to LoadLog when "full logging mode" is en... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Address wtc's comments Created 10 years, 11 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 | net/proxy/proxy_info.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/base/load_log.h
===================================================================
--- net/base/load_log.h (revision 35554)
+++ net/base/load_log.h (working copy)
@@ -142,6 +142,15 @@
log->Add(Entry(base::TimeTicks::Now(), string));
}
+ static void AddErrorCode(LoadLog* log, int error) {
+ if (log)
+ log->Add(Entry(base::TimeTicks::Now(), error));
+ }
+
+ static bool IsUnbounded(const LoadLog* log) {
+ return log && log->is_unbounded();
+ }
+
// --------------------------------------------------------------------------
// Returns the list of all entries in the log.
@@ -160,6 +169,10 @@
return max_num_entries_;
}
+ bool is_unbounded() const {
+ return max_num_entries_ == kUnbounded;
+ }
+
// Returns a C-String symbolic name for |event|.
static const char* EventTypeToString(EventType event_type);
« no previous file with comments | « no previous file | net/proxy/proxy_info.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698