HomeSort by relevance Sort by last modified time
    Searched defs:CapturingNetLog (Results 1 - 4 of 4) sorted by null

  /external/chromium/net/base/
capturing_net_log.cc 9 CapturingNetLog::Entry::Entry(EventType type,
18 CapturingNetLog::Entry::~Entry() {}
20 CapturingNetLog::CapturingNetLog(size_t max_num_entries)
26 CapturingNetLog::~CapturingNetLog() {}
28 void CapturingNetLog::GetEntries(EntryList* entry_list) const {
33 void CapturingNetLog::Clear() {
38 void CapturingNetLog::SetLogLevel(NetLog::LogLevel log_level) {
43 void CapturingNetLog::AddEntry(EventType type
    [all...]
capturing_net_log.h 21 // CapturingNetLog is an implementation of NetLog that saves messages to a
23 class CapturingNetLog : public NetLog {
45 // Creates a CapturingNetLog that logs a maximum of |max_num_entries|
47 explicit CapturingNetLog(size_t max_num_entries);
48 virtual ~CapturingNetLog();
78 DISALLOW_COPY_AND_ASSIGN(CapturingNetLog);
82 // CapturingNetLog rather than the more generic NetLog.
88 CapturingBoundNetLog(const NetLog::Source& source, CapturingNetLog* net_log);
100 void GetEntries(CapturingNetLog::EntryList* entry_list) const;
104 // Sets the log level of the underlying CapturingNetLog
    [all...]
  /external/chromium_org/net/base/
capturing_net_log.cc 13 CapturingNetLog::CapturedEntry::CapturedEntry(
26 CapturingNetLog::CapturedEntry::CapturedEntry(const CapturedEntry& entry) {
30 CapturingNetLog::CapturedEntry::~CapturedEntry() {}
32 CapturingNetLog::CapturedEntry&
33 CapturingNetLog::CapturedEntry::operator=(const CapturedEntry& entry) {
42 bool CapturingNetLog::CapturedEntry::GetStringValue(
50 bool CapturingNetLog::CapturedEntry::GetIntegerValue(
58 bool CapturingNetLog::CapturedEntry::GetNetErrorCode(int* value) const {
62 std::string CapturingNetLog::CapturedEntry::GetParamsJson() const {
70 CapturingNetLog::Observer::Observer() {
    [all...]
capturing_net_log.h 26 // CapturingNetLog is a NetLog which instantiates Observer that saves messages
30 class CapturingNetLog : public NetLog {
72 CapturingNetLog();
73 virtual ~CapturingNetLog();
118 DISALLOW_COPY_AND_ASSIGN(CapturingNetLog);
122 // CapturingNetLog rather than the more generic NetLog.
135 void GetEntries(CapturingNetLog::CapturedEntryList* entry_list) const;
140 CapturingNetLog::CapturedEntryList* entry_list) const;
147 // Sets the log level of the underlying CapturingNetLog.
151 CapturingNetLog capturing_net_log_
    [all...]

Completed in 92 milliseconds