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

Side by Side Diff: chrome/browser/net/net_log_logger.cc

Issue 4118004: Update NetLog to be thread safe. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Final sync with trunk Created 10 years 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/net/net_log_logger.h ('k') | chrome/browser/net/passive_log_collector.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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 #include "chrome/browser/net/net_log_logger.h" 5 #include "chrome/browser/net/net_log_logger.h"
6 6
7 #include "base/json/json_writer.h" 7 #include "base/json/json_writer.h"
8 #include "base/values.h" 8 #include "base/values.h"
9 9
10 NetLogLogger::NetLogLogger() : Observer(net::NetLog::LOG_ALL_BUT_BYTES) {} 10 NetLogLogger::NetLogLogger()
11 : ThreadSafeObserver(net::NetLog::LOG_ALL_BUT_BYTES) {
12 }
11 13
12 NetLogLogger::~NetLogLogger() {} 14 NetLogLogger::~NetLogLogger() {}
13 15
14 void NetLogLogger::OnAddEntry(net::NetLog::EventType type, 16 void NetLogLogger::OnAddEntry(net::NetLog::EventType type,
15 const base::TimeTicks& time, 17 const base::TimeTicks& time,
16 const net::NetLog::Source& source, 18 const net::NetLog::Source& source,
17 net::NetLog::EventPhase phase, 19 net::NetLog::EventPhase phase,
18 net::NetLog::EventParameters* params) { 20 net::NetLog::EventParameters* params) {
19 scoped_ptr<Value> value(net::NetLog::EntryToDictionaryValue(type, time, 21 scoped_ptr<Value> value(net::NetLog::EntryToDictionaryValue(type, time,
20 source, phase, 22 source, phase,
21 params, true)); 23 params, true));
22 std::string json; 24 std::string json;
23 base::JSONWriter::Write(value.get(), true, &json); 25 base::JSONWriter::Write(value.get(), true, &json);
24 VLOG(1) << json; 26 VLOG(1) << json;
25 } 27 }
26 28
OLDNEW
« no previous file with comments | « chrome/browser/net/net_log_logger.h ('k') | chrome/browser/net/passive_log_collector.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698