diff options
author | eroman@chromium.org <eroman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-03 22:53:58 +0000 |
---|---|---|
committer | eroman@chromium.org <eroman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-03 22:53:58 +0000 |
commit | ca1abf5cbc6414dd636dd90a2c6c7dcfbdf1c802 (patch) | |
tree | 9b88056cfe663383d251a97596cbb2cbeb16674f | |
parent | 3e32f277329f5fe85bbbeded200a1994757379a5 (diff) | |
download | chromium_src-ca1abf5cbc6414dd636dd90a2c6c7dcfbdf1c802.zip chromium_src-ca1abf5cbc6414dd636dd90a2c6c7dcfbdf1c802.tar.gz chromium_src-ca1abf5cbc6414dd636dd90a2c6c7dcfbdf1c802.tar.bz2 |
Remove the db_loop_ member variable which is a unused following r30163.
BUG=25354
Review URL: http://codereview.chromium.org/353023
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30876 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | chrome/browser/net/chrome_url_request_context.cc | 3 | ||||
-rw-r--r-- | chrome/browser/net/chrome_url_request_context.h | 3 |
2 files changed, 0 insertions, 6 deletions
diff --git a/chrome/browser/net/chrome_url_request_context.cc b/chrome/browser/net/chrome_url_request_context.cc index dec67cb..ce05427 100644 --- a/chrome/browser/net/chrome_url_request_context.cc +++ b/chrome/browser/net/chrome_url_request_context.cc @@ -594,9 +594,6 @@ ChromeURLRequestContextFactory::ChromeURLRequestContextFactory(Profile* profile) ssl_config_service_ = profile->GetSSLConfigService(); profile_dir_path_ = profile->GetPath(); - - // Get references to the database and file threads. - db_loop_ = g_browser_process->db_thread()->message_loop(); } ChromeURLRequestContextFactory::~ChromeURLRequestContextFactory() { diff --git a/chrome/browser/net/chrome_url_request_context.h b/chrome/browser/net/chrome_url_request_context.h index 5935297..1c60583 100644 --- a/chrome/browser/net/chrome_url_request_context.h +++ b/chrome/browser/net/chrome_url_request_context.h @@ -316,9 +316,6 @@ class ChromeURLRequestContextFactory { FilePath profile_dir_path_; - // Values extracted from the browser process. - MessageLoop* db_loop_; - DISALLOW_COPY_AND_ASSIGN(ChromeURLRequestContextFactory); }; |