| Index: ui/gfx/test_suite.cc
|
| diff --git a/ui/gfx/test_suite.cc b/ui/gfx/test_suite.cc
|
| index 1901ed003f69e1f4b28788244d532acc96dc0492..949f5f10148d38ea64fbc7b094c3817372a7b87c 100644
|
| --- a/ui/gfx/test_suite.cc
|
| +++ b/ui/gfx/test_suite.cc
|
| @@ -12,7 +12,7 @@
|
| #include "ui/gfx/gfx_paths.h"
|
|
|
| #if defined(OS_MACOSX)
|
| -#include "base/mac/foundation_util.h"
|
| +#include "base/mac/bundle_locations.h"
|
| #endif
|
|
|
| GfxTestSuite::GfxTestSuite(int argc, char** argv) : TestSuite(argc, argv) {}
|
| @@ -37,7 +37,7 @@ void GfxTestSuite::Initialize() {
|
| #else
|
| #error Unknown branding
|
| #endif
|
| - base::mac::SetOverrideAppBundlePath(path);
|
| + base::mac::SetOverrideFrameworkBundlePath(path);
|
| #elif defined(OS_POSIX)
|
| FilePath pak_dir;
|
| PathService::Get(base::DIR_MODULE, &pak_dir);
|
| @@ -56,7 +56,7 @@ void GfxTestSuite::Shutdown() {
|
| ui::ResourceBundle::CleanupSharedInstance();
|
|
|
| #if defined(OS_MACOSX)
|
| - base::mac::SetOverrideAppBundle(NULL);
|
| + base::mac::SetOverrideFrameworkBundle(NULL);
|
| #endif
|
| base::TestSuite::Shutdown();
|
| }
|
|
|