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

Unified Diff: chrome/browser/io_thread.cc

Issue 7690006: Revert 97446 - Modifying prefetch to account for multi-profile. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/browsing_data_remover.cc ('k') | chrome/browser/net/connect_interceptor.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/io_thread.cc
===================================================================
--- chrome/browser/io_thread.cc (revision 97464)
+++ chrome/browser/io_thread.cc (working copy)
@@ -24,6 +24,7 @@
#include "chrome/browser/net/chrome_url_request_context.h"
#include "chrome/browser/net/connect_interceptor.h"
#include "chrome/browser/net/passive_log_collector.h"
+#include "chrome/browser/net/predictor_api.h"
#include "chrome/browser/net/pref_proxy_config_service.h"
#include "chrome/browser/net/proxy_service_factory.h"
#include "chrome/browser/prefs/pref_service.h"
@@ -343,6 +344,8 @@
net_log_(net_log),
extension_event_router_forwarder_(extension_event_router_forwarder),
globals_(NULL),
+ speculative_interceptor_(NULL),
+ predictor_(NULL),
ALLOW_THIS_IN_INITIALIZER_LIST(method_factory_(this)) {
// We call RegisterPrefs() here (instead of inside browser_prefs.cc) to make
// sure that everything is initialized in the right order.
@@ -384,6 +387,33 @@
return net_log_;
}
+void IOThread::InitNetworkPredictor(
+ bool prefetching_enabled,
+ base::TimeDelta max_dns_queue_delay,
+ size_t max_speculative_parallel_resolves,
+ const chrome_common_net::UrlList& startup_urls,
+ ListValue* referral_list,
+ bool preconnect_enabled) {
+ DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
+ message_loop()->PostTask(
+ FROM_HERE,
+ NewRunnableMethod(
+ this,
+ &IOThread::InitNetworkPredictorOnIOThread,
+ prefetching_enabled, max_dns_queue_delay,
+ max_speculative_parallel_resolves,
+ startup_urls, referral_list, preconnect_enabled));
+}
+
+void IOThread::ChangedToOnTheRecord() {
+ DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
+ message_loop()->PostTask(
+ FROM_HERE,
+ NewRunnableMethod(
+ this,
+ &IOThread::ChangedToOnTheRecordOnIOThread));
+}
+
net::URLRequestContextGetter* IOThread::system_url_request_context_getter() {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
if (!system_url_request_context_getter_) {
@@ -392,6 +422,15 @@
return system_url_request_context_getter_;
}
+void IOThread::ClearNetworkingHistory() {
+ DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
+ ClearHostCache();
+ // Discard acrued data used to speculate in the future.
+ chrome_browser_net::DiscardInitialNavigationHistory();
+ if (predictor_)
+ predictor_->DiscardAllResults();
+}
+
void IOThread::Init() {
// Though this thread is called the "IO" thread, it actually just routes
// messages around; it shouldn't be allowed to perform any blocking disk I/O.
@@ -488,6 +527,21 @@
// This must be reset before the ChromeNetLog is destroyed.
network_change_observer_.reset();
+ // Not initialized in Init(). May not be initialized.
+ if (predictor_) {
+ predictor_->Shutdown();
+
+ // TODO(willchan): Stop reference counting Predictor. It's owned by
+ // IOThread now.
+ predictor_->Release();
+ predictor_ = NULL;
+ chrome_browser_net::FreePredictorResources();
+ }
+
+ // Deletion will unregister this interceptor.
+ delete speculative_interceptor_;
+ speculative_interceptor_ = NULL;
+
system_proxy_config_service_.reset();
delete globals_;
@@ -544,6 +598,51 @@
negotiate_enable_port_);
}
+void IOThread::InitNetworkPredictorOnIOThread(
+ bool prefetching_enabled,
+ base::TimeDelta max_dns_queue_delay,
+ size_t max_speculative_parallel_resolves,
+ const chrome_common_net::UrlList& startup_urls,
+ ListValue* referral_list,
+ bool preconnect_enabled) {
+ DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
+ CHECK(!predictor_);
+
+ chrome_browser_net::EnablePredictor(prefetching_enabled);
+
+ predictor_ = new chrome_browser_net::Predictor(
+ globals_->host_resolver.get(),
+ max_dns_queue_delay,
+ max_speculative_parallel_resolves,
+ preconnect_enabled);
+ predictor_->AddRef();
+
+ // Speculative_interceptor_ is used to predict subresource usage.
+ DCHECK(!speculative_interceptor_);
+ speculative_interceptor_ = new chrome_browser_net::ConnectInterceptor;
+
+ FinalizePredictorInitialization(predictor_, startup_urls, referral_list);
+}
+
+void IOThread::ChangedToOnTheRecordOnIOThread() {
+ DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
+
+ if (predictor_) {
+ // Destroy all evidence of our OTR session.
+ // Note: OTR mode never saves InitialNavigationHistory data.
+ predictor_->Predictor::DiscardAllResults();
+ }
+
+ // Clear the host cache to avoid showing entries from the OTR session
+ // in about:net-internals.
+ ClearHostCache();
+
+ // Clear all of the passively logged data.
+ // TODO(eroman): this is a bit heavy handed, really all we need to do is
+ // clear the data pertaining to incognito context.
+ net_log_->ClearAllPassivelyCapturedEvents();
+}
+
void IOThread::ClearHostCache() {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
« no previous file with comments | « chrome/browser/browsing_data_remover.cc ('k') | chrome/browser/net/connect_interceptor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698