diff options
author | erikkay@google.com <erikkay@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-15 17:38:45 +0000 |
---|---|---|
committer | erikkay@google.com <erikkay@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-15 17:38:45 +0000 |
commit | 6733cc55b7e0398ef79cf937c03fba20af189321 (patch) | |
tree | b22ef3e88919d9701e52f0c60783481812ba96fa /base/base_paths_win.cc | |
parent | f6fc4db35b28dc4e96167e2f6e9fed6554de4c31 (diff) | |
download | chromium_src-6733cc55b7e0398ef79cf937c03fba20af189321.zip chromium_src-6733cc55b7e0398ef79cf937c03fba20af189321.tar.gz chromium_src-6733cc55b7e0398ef79cf937c03fba20af189321.tar.bz2 |
fix build bustage
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@946 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/base_paths_win.cc')
-rw-r--r-- | base/base_paths_win.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/base/base_paths_win.cc b/base/base_paths_win.cc index 0fe0101..38d30d7 100644 --- a/base/base_paths_win.cc +++ b/base/base_paths_win.cc @@ -127,7 +127,7 @@ bool PathProviderWin(int key, std::wstring* result) { case base::DIR_SOURCE_ROOT: // On Windows, unit tests execute two levels deep from the source root. // For example: chrome/{Debug|Release}/ui_tests.exe - PathProvider(base::DIR_EXE, &cur); + PathService::Get(base::DIR_EXE, &cur); file_util::UpOneDirectory(&cur); file_util::UpOneDirectory(&cur); break; |