HomeSort by relevance Sort by last modified time
    Searched refs:ChromeNetLog (Results 1 - 25 of 29) sorted by null

1 2

  /external/chromium_org/chrome/browser/net/
chrome_net_log.h 20 // ChromeNetLog is an implementation of NetLog that adds file loggers
22 class ChromeNetLog : public net::NetLog {
24 ChromeNetLog();
25 virtual ~ChromeNetLog();
35 DISALLOW_COPY_AND_ASSIGN(ChromeNetLog);
net_log_temp_file.h 23 class ChromeNetLog;
66 explicit NetLogTempFile(ChromeNetLog* chrome_net_log);
76 friend class ChromeNetLog;
133 ChromeNetLog* chrome_net_log_;
chrome_net_log.cc 20 ChromeNetLog::ChromeNetLog()
64 ChromeNetLog::~ChromeNetLog() {
net_log_temp_file_unittest.cc 21 explicit TestNetLogTempFile(ChromeNetLog* chrome_net_log)
57 : net_log_(new ChromeNetLog),
151 scoped_ptr<ChromeNetLog> net_log_;
net_log_temp_file.cc 16 NetLogTempFile::NetLogTempFile(ChromeNetLog* chrome_net_log)
  /external/chromium/chrome/browser/net/
chrome_net_log.cc 18 ChromeNetLog::ThreadSafeObserver::ThreadSafeObserver(LogLevel log_level)
23 ChromeNetLog::ThreadSafeObserver::~ThreadSafeObserver() {
27 net::NetLog::LogLevel ChromeNetLog::ThreadSafeObserver::log_level() const {
31 void ChromeNetLog::ThreadSafeObserver::AssertNetLogLockAcquired() const {
36 void ChromeNetLog::ThreadSafeObserver::SetLogLevel(
44 ChromeNetLog::Entry::Entry(uint32 order,
58 ChromeNetLog::Entry::~Entry() {}
60 ChromeNetLog::ChromeNetLog()
76 ChromeNetLog::~ChromeNetLog()
    [all...]
passive_log_collector.h 36 // The PassiveLogCollector is owned by the ChromeNetLog itself, and is not
37 // thread safe. The ChromeNetLog is responsible for calling it in a thread safe
39 class PassiveLogCollector : public ChromeNetLog::ThreadSafeObserver {
53 ChromeNetLog::EntryList entries;
79 virtual void OnAddEntry(const ChromeNetLog::Entry& entry) = 0;
85 virtual void AppendAllEntries(ChromeNetLog::EntryList* out) const = 0;
96 virtual void OnAddEntry(const ChromeNetLog::Entry& entry);
98 virtual void AppendAllEntries(ChromeNetLog::EntryList* out) const;
101 typedef std::deque<ChromeNetLog::Entry> CircularEntryList;
122 virtual void OnAddEntry(const ChromeNetLog::Entry& entry)
    [all...]
chrome_net_log.h 22 // ChromeNetLog is an implementation of NetLog that dispatches network log
25 // All methods are thread safe, with the exception that no ChromeNetLog or
26 // ChromeNetLog::ThreadSafeObserver functions may be called by an observer's
29 // By default, ChromeNetLog will attach the observer PassiveLogCollector which
33 class ChromeNetLog : public net::NetLog {
62 // observe a single ChromeNetLog at a time.
80 // It is illegal for an Observer to call any ChromeNetLog or
81 // ChromeNetLog::ThreadSafeObserver functions in response to a call to
93 // Can only be called when actively observing a ChromeNetLog.
96 // ChromeNetLog currently being observed, if any. Set by ChromeNetLog'
    [all...]
chrome_net_log_unittest.cc 23 void Init(ChromeNetLog* log) {
46 ChromeNetLog* log_;
53 // Attempts to check thread safety, exercising checks in ChromeNetLog and
56 ChromeNetLog log;
70 ChromeNetLog::EntryList entries;
net_log_logger.h 18 // Relies on ChromeNetLog only calling an Observer once at a time for
20 class NetLogLogger : public ChromeNetLog::ThreadSafeObserver {
passive_log_collector.cc 20 void AddEntryToSourceInfo(const ChromeNetLog::Entry& entry,
32 bool SortByOrderComparator(const ChromeNetLog::Entry& a,
33 const ChromeNetLog::Entry& b) {
92 ChromeNetLog::Entry entry(num_events_seen_++, type, time, source, phase,
115 ChromeNetLog::EntryList* out) const {
132 const ChromeNetLog::Entry& entry = entries[i];
157 const ChromeNetLog::Entry& entry) {
169 ChromeNetLog::EntryList* out) const {
189 const ChromeNetLog::Entry& entry) {
256 ChromeNetLog::EntryList* out) const
    [all...]
passive_log_collector_unittest.cc 23 ChromeNetLog::Entry MakeStartLogEntryWithURL(int source_id,
25 return ChromeNetLog::Entry(
34 ChromeNetLog::Entry MakeStartLogEntry(int source_id) {
39 ChromeNetLog::Entry MakeEndLogEntry(int source_id) {
40 return ChromeNetLog::Entry(
180 ChromeNetLog::Entry begin(
192 ChromeNetLog::Entry end(
load_timing_observer.h 27 class LoadTimingObserver : public ChromeNetLog::ThreadSafeObserver {
load_timing_observer.cc 107 ChromeNetLog* chrome_net_log = static_cast<ChromeNetLog*>(
  /external/chromium/chrome/browser/debugger/
devtools_netlog_observer.h 28 class DevToolsNetLogObserver: public ChromeNetLog::ThreadSafeObserver {
69 explicit DevToolsNetLogObserver(ChromeNetLog* chrome_net_log);
74 ChromeNetLog* chrome_net_log_;
devtools_netlog_observer.cc 22 DevToolsNetLogObserver::DevToolsNetLogObserver(ChromeNetLog* chrome_net_log)
23 : ChromeNetLog::ThreadSafeObserver(net::NetLog::LOG_ALL_BUT_BYTES),
  /external/chromium/chrome/browser/
io_thread.h 19 class ChromeNetLog;
82 ChromeNetLog* net_log,
90 ChromeNetLog* net_log();
165 ChromeNetLog* net_log_;
181 // Observer that logs network changes to the ChromeNetLog.
browser_process.h 27 class ChromeNetLog;
212 virtual ChromeNetLog* net_log() = 0;
browser_process_impl.h 30 class ChromeNetLog;
108 virtual ChromeNetLog* net_log();
262 scoped_ptr<ChromeNetLog> net_log_;
  /external/chromium_org/chrome/browser/
browser_process.h 23 class ChromeNetLog;
207 virtual ChromeNetLog* net_log() = 0;
io_thread.h 23 class ChromeNetLog;
180 ChromeNetLog* net_log,
195 ChromeNetLog* net_log();
271 ChromeNetLog* net_log_;
287 // Observer that logs network changes to the ChromeNetLog.
browser_process_impl.h 24 class ChromeNetLog;
120 virtual ChromeNetLog* net_log() OVERRIDE;
259 scoped_ptr<ChromeNetLog> net_log_;
  /external/chromium_org/chrome/test/base/
testing_browser_process.h 102 virtual ChromeNetLog* net_log() OVERRIDE;
testing_browser_process.cc 294 ChromeNetLog* TestingBrowserProcess::net_log() {
  /external/chromium/chrome/browser/ui/webui/
net_internals_ui.cc 233 public ChromeNetLog::ThreadSafeObserver,
261 void SendPassiveLogEntries(const ChromeNetLog::EntryList& passive_entries);
297 // ChromeNetLog::ThreadSafeObserver implementation:
704 const ChromeNetLog::EntryList& passive_entries) {
708 const ChromeNetLog::Entry& e = passive_entries[i];
    [all...]

Completed in 345 milliseconds

1 2