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

Side by Side Diff: net/base/capturing_net_log.cc

Issue 992733002: Remove //net (except for Android test stuff) and sdch (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 9 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 unified diff | Download patch
« no previous file with comments | « net/base/capturing_net_log.h ('k') | net/base/capturing_net_log_observer.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "net/base/capturing_net_log.h"
6
7 namespace net {
8
9 CapturingNetLog::CapturingNetLog() {
10 AddThreadSafeObserver(&capturing_net_log_observer_, LOG_ALL_BUT_BYTES);
11 }
12
13 CapturingNetLog::~CapturingNetLog() {
14 RemoveThreadSafeObserver(&capturing_net_log_observer_);
15 }
16
17 void CapturingNetLog::SetLogLevel(NetLog::LogLevel log_level) {
18 SetObserverLogLevel(&capturing_net_log_observer_, log_level);
19 }
20
21 void CapturingNetLog::GetEntries(
22 CapturingNetLog::CapturedEntryList* entry_list) const {
23 capturing_net_log_observer_.GetEntries(entry_list);
24 }
25
26 void CapturingNetLog::GetEntriesForSource(
27 NetLog::Source source,
28 CapturedEntryList* entry_list) const {
29 capturing_net_log_observer_.GetEntriesForSource(source, entry_list);
30 }
31
32 size_t CapturingNetLog::GetSize() const {
33 return capturing_net_log_observer_.GetSize();
34 }
35
36 void CapturingNetLog::Clear() {
37 capturing_net_log_observer_.Clear();
38 }
39
40 CapturingBoundNetLog::CapturingBoundNetLog()
41 : net_log_(BoundNetLog::Make(&capturing_net_log_,
42 net::NetLog::SOURCE_NONE)) {
43 }
44
45 CapturingBoundNetLog::~CapturingBoundNetLog() {}
46
47 void CapturingBoundNetLog::GetEntries(
48 CapturingNetLog::CapturedEntryList* entry_list) const {
49 capturing_net_log_.GetEntries(entry_list);
50 }
51
52 void CapturingBoundNetLog::GetEntriesForSource(
53 NetLog::Source source,
54 CapturingNetLog::CapturedEntryList* entry_list) const {
55 capturing_net_log_.GetEntriesForSource(source, entry_list);
56 }
57
58 size_t CapturingBoundNetLog::GetSize() const {
59 return capturing_net_log_.GetSize();
60 }
61
62 void CapturingBoundNetLog::Clear() {
63 capturing_net_log_.Clear();
64 }
65
66 void CapturingBoundNetLog::SetLogLevel(NetLog::LogLevel log_level) {
67 capturing_net_log_.SetLogLevel(log_level);
68 }
69
70 } // namespace net
OLDNEW
« no previous file with comments | « net/base/capturing_net_log.h ('k') | net/base/capturing_net_log_observer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698