diff options
author | tony@chromium.org <tony@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-06-22 08:54:26 +0000 |
---|---|---|
committer | tony@chromium.org <tony@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-06-22 08:54:26 +0000 |
commit | a12a7c2ffb8ce5ab0c95c7fc69dae4db32913c5e (patch) | |
tree | 8a81a7c6647d7502e702ffa7d47f0849b8b7a835 /chrome/common/chrome_paths.cc | |
parent | f0755536852897ecee1397260b317462e19c0b24 (diff) | |
download | chromium_src-a12a7c2ffb8ce5ab0c95c7fc69dae4db32913c5e.zip chromium_src-a12a7c2ffb8ce5ab0c95c7fc69dae4db32913c5e.tar.gz chromium_src-a12a7c2ffb8ce5ab0c95c7fc69dae4db32913c5e.tar.bz2 |
Speculative fix for installed windows build.
TBR=erg
Review URL: http://codereview.chromium.org/2827019
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@50436 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/chrome_paths.cc')
-rw-r--r-- | chrome/common/chrome_paths.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/common/chrome_paths.cc b/chrome/common/chrome_paths.cc index 738ee3a..b567224 100644 --- a/chrome/common/chrome_paths.cc +++ b/chrome/common/chrome_paths.cc @@ -255,7 +255,7 @@ bool PathProvider(int key, FilePath* result) { // If we're not bundled on mac, resources.pak should be next to the // binary (e.g., for unit tests). #endif - if (!PathService::Get(base::DIR_EXE, &cur)) + if (!PathService::Get(base::DIR_MODULE, &cur)) return false; cur = cur.Append(FILE_PATH_LITERAL("resources.pak")); break; |