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

Unified Diff: chrome/browser/io_thread.h

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, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/dom_ui/net_internals_ui.cc ('k') | chrome/browser/io_thread.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/io_thread.h
===================================================================
--- chrome/browser/io_thread.h (revision 67848)
+++ chrome/browser/io_thread.h (working copy)
@@ -43,7 +43,6 @@
Globals();
~Globals();
- scoped_ptr<ChromeNetLog> net_log;
scoped_ptr<net::HostResolver> host_resolver;
scoped_ptr<net::DnsRRResolver> dnsrr_resolver;
scoped_ptr<net::HttpAuthHandlerFactory> http_auth_handler_factory;
@@ -51,13 +50,16 @@
ChromeNetworkDelegate network_delegate;
};
- explicit IOThread(PrefService* local_state);
+ // |net_log| must either outlive the IOThread or be NULL.
+ IOThread(PrefService* local_state, ChromeNetLog* net_log);
virtual ~IOThread();
// Can only be called on the IO thread.
Globals* globals();
+ ChromeNetLog* net_log();
+
// Initializes the network predictor, which induces DNS pre-resolution and/or
// TCP/IP preconnections. |prefetching_enabled| indicates whether or not DNS
// prefetching should be enabled, and |preconnect_enabled| controls whether
@@ -120,22 +122,20 @@
void ChangedToOnTheRecordOnIOThread();
+ // The NetLog is owned by the browser process, to allow logging from other
+ // threads during shutdown, but is used most frequently on the IOThread.
+ ChromeNetLog* net_log_;
+
// These member variables are basically global, but their lifetimes are tied
// to the IOThread. IOThread owns them all, despite not using scoped_ptr.
// This is because the destructor of IOThread runs on the wrong thread. All
- // member variables should be deleted in CleanUp(), except ChromeNetLog
- // which is deleted later in CleanUpAfterMessageLoopDestruction().
+ // member variables should be deleted in CleanUp().
// These member variables are initialized in Init() and do not change for the
// lifetime of the IO thread.
Globals* globals_;
- // This variable is only meaningful during shutdown. It is used to defer
- // deletion of the NetLog to CleanUpAfterMessageLoopDestruction() even
- // though |globals_| is reset by CleanUp().
- scoped_ptr<ChromeNetLog> deferred_net_log_to_delete_;
-
// Observer that logs network changes to the ChromeNetLog.
scoped_ptr<net::NetworkChangeNotifier::Observer> network_change_observer_;
« no previous file with comments | « chrome/browser/dom_ui/net_internals_ui.cc ('k') | chrome/browser/io_thread.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698