Index: chrome/test/base/chrome_test_suite.cc |
diff --git a/chrome/test/base/chrome_test_suite.cc b/chrome/test/base/chrome_test_suite.cc |
index 0612fd4373b2aacb6aee16d873a6202c966ec1e3..d5fc90e119e7835c20af740f34caf7ac594f627e 100644 |
--- a/chrome/test/base/chrome_test_suite.cc |
+++ b/chrome/test/base/chrome_test_suite.cc |
@@ -28,6 +28,7 @@ |
#include "ui/base/ui_base_paths.h" |
#if defined(OS_MACOSX) |
+#include "base/mac/bundle_locations.h" |
#include "base/mac/mac_util.h" |
#include "base/mac/scoped_nsautorelease_pool.h" |
#include "chrome/browser/chrome_browser_application_mac.h" |
@@ -185,7 +186,7 @@ void ChromeTestSuite::Initialize() { |
FilePath path; |
PathService::Get(base::DIR_EXE, &path); |
path = path.Append(chrome::kFrameworkName); |
- base::mac::SetOverrideAppBundlePath(path); |
+ base::mac::SetOverrideFrameworkBundlePath(path); |
#endif |
// Force unittests to run using en-US so if we test against string |
@@ -219,7 +220,7 @@ void ChromeTestSuite::Shutdown() { |
ResourceBundle::CleanupSharedInstance(); |
#if defined(OS_MACOSX) |
- base::mac::SetOverrideAppBundle(NULL); |
+ base::mac::SetOverrideFrameworkBundle(NULL); |
#endif |
base::StatsTable::set_current(NULL); |