diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-04 02:13:34 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-04 02:13:34 +0000 |
commit | 4fae3164b3d77050593d75823d4fbd36595d09ef (patch) | |
tree | 2f4881c0f1cc1a1fb0b1be84b224e5a3f0f2d5a6 /chrome/browser/locale_tests_uitest.cc | |
parent | 73ffa00043fa030945925e6d7f2f8a60d8dbc0c1 (diff) | |
download | chromium_src-4fae3164b3d77050593d75823d4fbd36595d09ef.zip chromium_src-4fae3164b3d77050593d75823d4fbd36595d09ef.tar.gz chromium_src-4fae3164b3d77050593d75823d4fbd36595d09ef.tar.bz2 |
base: rename Environment::UnSetEnv to Environment::UnSetVar.
This is the part 1 of this series. More three comming. Splitting this
into small parts, so it is more easy to review and reduce the size of the CL.
BUG=None
TEST=trybots
Review URL: http://codereview.chromium.org/3058034
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54862 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/locale_tests_uitest.cc')
-rw-r--r-- | chrome/browser/locale_tests_uitest.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/locale_tests_uitest.cc b/chrome/browser/locale_tests_uitest.cc index 94cefdb..b8f5e32 100644 --- a/chrome/browser/locale_tests_uitest.cc +++ b/chrome/browser/locale_tests_uitest.cc @@ -19,7 +19,7 @@ class LocaleTestsBase : public UITest { if (old_lc_all_) { env->SetEnv("LC_ALL", old_lc_all_); } else { - env->UnSetEnv("LC_ALL"); + env->UnSetVar("LC_ALL"); } #endif }; |