| Index: chrome/common/chrome_paths_unittest.cc
|
| diff --git a/chrome/common/chrome_paths_unittest.cc b/chrome/common/chrome_paths_unittest.cc
|
| index 98f9882e84b2578e04ff2599d913ddc263988b99..728f43f88b834e86d84c58fb5a2d156ff2c7e835 100644
|
| --- a/chrome/common/chrome_paths_unittest.cc
|
| +++ b/chrome/common/chrome_paths_unittest.cc
|
| @@ -12,6 +12,16 @@
|
| #include "chrome/common/chrome_constants.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
|
|
| +#if defined(OS_WIN)
|
| +#include "base/base_paths_win.h"
|
| +#elif defined(OS_MACOSX)
|
| +#include "base/base_paths_mac.h"
|
| +#endif
|
| +
|
| +#if defined(OS_POSIX)
|
| +#include "base/base_paths_posix.h"
|
| +#endif
|
| +
|
| // Test the behavior of chrome::GetUserCacheDirectory.
|
| // See that function's comments for discussion of the subtleties.
|
| TEST(ChromePaths, UserCacheDir) {
|
|
|