summaryrefslogtreecommitdiffstats
path: root/base/path_service.cc
diff options
context:
space:
mode:
authorerikkay@chromium.org <erikkay@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-09-16 16:31:28 +0000
committererikkay@chromium.org <erikkay@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-09-16 16:31:28 +0000
commit188505284e175f0f75c341c1a7fbe00ca1773324 (patch)
treee1e868575e2b04b802770eb4579ce96271890dd0 /base/path_service.cc
parent2242609d9f24588b538af015d3ada1d4a9f8beb1 (diff)
downloadchromium_src-188505284e175f0f75c341c1a7fbe00ca1773324.zip
chromium_src-188505284e175f0f75c341c1a7fbe00ca1773324.tar.gz
chromium_src-188505284e175f0f75c341c1a7fbe00ca1773324.tar.bz2
Quick fix to use file_util::SetCurrentDirectory method instead of the PathService method, also avoids the conflict with the the windows function.
BUG=None TEST=None Review URL: http://codereview.chromium.org/196072 Patch from thiago.farina@gmail.com. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@26351 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/path_service.cc')
-rw-r--r--base/path_service.cc4
1 files changed, 0 insertions, 4 deletions
diff --git a/base/path_service.cc b/base/path_service.cc
index a1b1db9..da172b3 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::SetCurrentDirectory(const std::wstring& current_directory) {
- return file_util::SetCurrentDirectory(current_directory);
-}
-
void PathService::RegisterProvider(ProviderFunc func, int key_start,
int key_end) {
PathData* path_data = GetPathData();