diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-04-14 15:34:54 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-04-14 15:34:54 +0000 |
commit | 3fea6c59c43e584136852ed447193e15602e787b (patch) | |
tree | 25e7a259cab02002cfee1ecc0c3ca43f60d0c6e2 /chrome/common/googleurl_dummy.cc | |
parent | dd34de09bf66de5ec57686a76de7120b748c32e2 (diff) | |
download | chromium_src-3fea6c59c43e584136852ed447193e15602e787b.zip chromium_src-3fea6c59c43e584136852ed447193e15602e787b.tar.gz chromium_src-3fea6c59c43e584136852ed447193e15602e787b.tar.bz2 |
Remove registration of the extension protocol late in the init process. This
protocol is already getting registered by url_util.cc super early in the
process, so this extra registration is redundant. Re-adding the protocol later
apparently modifies the set that url_util uses, and when this happens there
could be other threads reading it.
BUG=41150
TEST=none
Review URL: http://codereview.chromium.org/1545029
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@44476 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/googleurl_dummy.cc')
-rw-r--r-- | chrome/common/googleurl_dummy.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/chrome/common/googleurl_dummy.cc b/chrome/common/googleurl_dummy.cc index 475a5f1..f55c263 100644 --- a/chrome/common/googleurl_dummy.cc +++ b/chrome/common/googleurl_dummy.cc @@ -12,4 +12,7 @@ namespace url_util { void AddStandardScheme(const char* new_scheme) { } +void LockStandardSchemes() { +} + } // namespace url_util |