diff options
author | koz@chromium.org <koz@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-05 06:07:28 +0000 |
---|---|---|
committer | koz@chromium.org <koz@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-05 06:07:28 +0000 |
commit | 559f973910377af001a91cc014ddcad6155d255a (patch) | |
tree | a9942ba7555ef67d20449edfd98639fa3ca40628 /chrome/browser/profiles | |
parent | d99592b1bea5672f33c705a5efb7eeb347bc24e5 (diff) | |
download | chromium_src-559f973910377af001a91cc014ddcad6155d255a.zip chromium_src-559f973910377af001a91cc014ddcad6155d255a.tar.gz chromium_src-559f973910377af001a91cc014ddcad6155d255a.tar.bz2 |
Change ProtocolHandlerRegistry from locks to message passing.
TEST=unit tests provided
Review URL: http://codereview.chromium.org/7291021
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91490 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/profiles')
-rw-r--r-- | chrome/browser/profiles/profile_io_data.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/profiles/profile_io_data.cc b/chrome/browser/profiles/profile_io_data.cc index 79687b5..ae51d76 100644 --- a/chrome/browser/profiles/profile_io_data.cc +++ b/chrome/browser/profiles/profile_io_data.cc @@ -160,7 +160,7 @@ class ProtocolHandlerRegistryInterceptor } virtual bool WillHandleProtocol(const std::string& protocol) const { - return protocol_handler_registry_->IsHandledProtocol(protocol); + return protocol_handler_registry_->IsHandledProtocolIO(protocol); } virtual net::URLRequestJob* MaybeInterceptRedirect( |