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/shell_integration_unittest.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/shell_integration_unittest.cc')
-rw-r--r-- | chrome/browser/shell_integration_unittest.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/shell_integration_unittest.cc b/chrome/browser/shell_integration_unittest.cc index cc3372c..4353911 100644 --- a/chrome/browser/shell_integration_unittest.cc +++ b/chrome/browser/shell_integration_unittest.cc @@ -53,7 +53,7 @@ class MockEnvironment : public base::Environment { return false; } - virtual bool UnSetEnv(const char* variable_name) { + virtual bool UnSetVar(const char* variable_name) { ADD_FAILURE(); return false; } |