diff options
author | mad@chromium.org <mad@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-04-18 05:52:23 +0000 |
---|---|---|
committer | mad@chromium.org <mad@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-04-18 05:52:23 +0000 |
commit | 943494ba68d785c227a9525618ccc9c3a7759ad7 (patch) | |
tree | 420b98e121891e401a8beaf9e04c76065e243de8 /components | |
parent | 9be0bad46c292c9578e79840b86f6e36af5b0655 (diff) | |
download | chromium_src-943494ba68d785c227a9525618ccc9c3a7759ad7.zip chromium_src-943494ba68d785c227a9525618ccc9c3a7759ad7.tar.gz chromium_src-943494ba68d785c227a9525618ccc9c3a7759ad7.tar.bz2 |
Removed unused thread checker.
BUG=None
Review URL: https://chromiumcodereview.appspot.com/14261006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194790 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'components')
-rw-r--r-- | components/autofill/browser/autofill_country.cc | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/components/autofill/browser/autofill_country.cc b/components/autofill/browser/autofill_country.cc index 26cc5ca..bae6541 100644 --- a/components/autofill/browser/autofill_country.cc +++ b/components/autofill/browser/autofill_country.cc @@ -14,7 +14,6 @@ #include "base/memory/singleton.h" #include "base/stl_util.h" #include "base/string_util.h" -#include "base/threading/thread_checker.h" #include "base/utf_string_conversions.h" #include "grit/generated_resources.h" #include "third_party/icu/public/common/unicode/locid.h" @@ -891,9 +890,6 @@ class CountryNames { // Maps ICU locale names to their corresponding collators. std::map<std::string, icu::Collator*> collators_; - // Verifies thread-safety of accesses to the application locale. - base::ThreadChecker thread_checker_; - DISALLOW_COPY_AND_ASSIGN(CountryNames); }; |