diff options
author | jcampan@chromium.org <jcampan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-02 17:18:22 +0000 |
---|---|---|
committer | jcampan@chromium.org <jcampan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-02 17:18:22 +0000 |
commit | 057a8553ab9f8cb5cc9cbecf0ddb8a73afe6f6c7 (patch) | |
tree | 05ed42974e9a8863bfa6c59fd2a9419c8e9ec3d6 /base/path_service.cc | |
parent | f103ab7a3af66f93aa6b674598ee8c977917f5f2 (diff) | |
download | chromium_src-057a8553ab9f8cb5cc9cbecf0ddb8a73afe6f6c7.zip chromium_src-057a8553ab9f8cb5cc9cbecf0ddb8a73afe6f6c7.tar.gz chromium_src-057a8553ab9f8cb5cc9cbecf0ddb8a73afe6f6c7.tar.bz2 |
Landing the patch of Thiago Farina.
See http://codereview.chromium.org/183025
Removes the deprecated version of PathService::Override that uses std::wstring
and fix the callers.
BUG=None
TEST=None
Review URL: http://codereview.chromium.org/185007
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@25185 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/path_service.cc')
-rw-r--r-- | base/path_service.cc | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/base/path_service.cc b/base/path_service.cc index 3e34892..a1b1db9 100644 --- a/base/path_service.cc +++ b/base/path_service.cc @@ -231,10 +231,6 @@ bool PathService::Override(int key, const FilePath& path) { return true; } -bool PathService::Override(int key, const std::wstring& path) { - return Override(key, FilePath::FromWStringHack(path)); -} - bool PathService::SetCurrentDirectory(const std::wstring& current_directory) { return file_util::SetCurrentDirectory(current_directory); } |