Chromium Code Reviews

Side by Side 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.
Jump to:
View unified diff | | Annotate | Revision Log
« no previous file with comments | « no previous file | net/proxy/proxy_info.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef NET_BASE_LOAD_LOG_H_ 5 #ifndef NET_BASE_LOAD_LOG_H_
6 #define NET_BASE_LOAD_LOG_H_ 6 #define NET_BASE_LOAD_LOG_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 124 matching lines...)
135 static void AddStringLiteral(LoadLog* log, const char* literal) { 135 static void AddStringLiteral(LoadLog* log, const char* literal) {
136 if (log) 136 if (log)
137 log->Add(Entry(base::TimeTicks::Now(), literal)); 137 log->Add(Entry(base::TimeTicks::Now(), literal));
138 } 138 }
139 139
140 static void AddString(LoadLog* log, const std::string& string) { 140 static void AddString(LoadLog* log, const std::string& string) {
141 if (log) 141 if (log)
142 log->Add(Entry(base::TimeTicks::Now(), string)); 142 log->Add(Entry(base::TimeTicks::Now(), string));
143 } 143 }
144 144
145 static void AddErrorCode(LoadLog* log, int error) {
146 if (log)
147 log->Add(Entry(base::TimeTicks::Now(), error));
148 }
149
150 static bool IsUnbounded(const LoadLog* log) {
151 return log && log->is_unbounded();
152 }
153
145 // -------------------------------------------------------------------------- 154 // --------------------------------------------------------------------------
146 155
147 // Returns the list of all entries in the log. 156 // Returns the list of all entries in the log.
148 const EntryList& entries() const { 157 const EntryList& entries() const {
149 return entries_; 158 return entries_;
150 } 159 }
151 160
152 // Returns the number of entries that were dropped from the log because the 161 // Returns the number of entries that were dropped from the log because the
153 // maximum size had been reached. 162 // maximum size had been reached.
154 size_t num_entries_truncated() const { 163 size_t num_entries_truncated() const {
155 return num_entries_truncated_; 164 return num_entries_truncated_;
156 } 165 }
157 166
158 // Returns the bound on the size of the log. 167 // Returns the bound on the size of the log.
159 size_t max_num_entries() const { 168 size_t max_num_entries() const {
160 return max_num_entries_; 169 return max_num_entries_;
161 } 170 }
162 171
172 bool is_unbounded() const {
173 return max_num_entries_ == kUnbounded;
174 }
175
163 // Returns a C-String symbolic name for |event|. 176 // Returns a C-String symbolic name for |event|.
164 static const char* EventTypeToString(EventType event_type); 177 static const char* EventTypeToString(EventType event_type);
165 178
166 void Add(const Entry& entry); 179 void Add(const Entry& entry);
167 180
168 // Copies all entries from |log|, appending it to the end of |this|. 181 // Copies all entries from |log|, appending it to the end of |this|.
169 void Append(const LoadLog* log); 182 void Append(const LoadLog* log);
170 183
171 private: 184 private:
172 friend class base::RefCountedThreadSafe<LoadLog>; 185 friend class base::RefCountedThreadSafe<LoadLog>;
173 186
174 ~LoadLog() {} 187 ~LoadLog() {}
175 188
176 EntryList entries_; 189 EntryList entries_;
177 size_t num_entries_truncated_; 190 size_t num_entries_truncated_;
178 size_t max_num_entries_;; 191 size_t max_num_entries_;;
179 }; 192 };
180 193
181 } // namespace net 194 } // namespace net
182 195
183 #endif // NET_BASE_LOAD_LOG_H_ 196 #endif // NET_BASE_LOAD_LOG_H_
OLDNEW
« no previous file with comments | « no previous file | net/proxy/proxy_info.h » ('j') | no next file with comments »

Powered by Google App Engine