| Index: chrome/browser/shell_integration_unittest.cc
|
| diff --git a/chrome/browser/shell_integration_unittest.cc b/chrome/browser/shell_integration_unittest.cc
|
| index f5b2db0c4c4b4a2dfa6c5ecb30231c88bc8ce574..f344cfc09e0397f7a0d8411890575ad8328f4b2b 100644
|
| --- a/chrome/browser/shell_integration_unittest.cc
|
| +++ b/chrome/browser/shell_integration_unittest.cc
|
| @@ -8,8 +8,8 @@
|
|
|
| #include "base/file_path.h"
|
| #include "base/file_util.h"
|
| +#include "base/files/scoped_temp_dir.h"
|
| #include "base/message_loop.h"
|
| -#include "base/scoped_temp_dir.h"
|
| #include "base/stl_util.h"
|
| #include "base/string_util.h"
|
| #include "base/utf_string_conversions.h"
|
| @@ -84,7 +84,7 @@ TEST(ShellIntegrationTest, GetDesktopShortcutTemplate) {
|
| content::TestBrowserThread file_thread(BrowserThread::FILE, &message_loop);
|
|
|
| {
|
| - ScopedTempDir temp_dir;
|
| + base::ScopedTempDir temp_dir;
|
| ASSERT_TRUE(temp_dir.CreateUniqueTempDir());
|
|
|
| MockEnvironment env;
|
| @@ -99,7 +99,7 @@ TEST(ShellIntegrationTest, GetDesktopShortcutTemplate) {
|
| }
|
|
|
| {
|
| - ScopedTempDir temp_dir;
|
| + base::ScopedTempDir temp_dir;
|
| ASSERT_TRUE(temp_dir.CreateUniqueTempDir());
|
|
|
| MockEnvironment env;
|
| @@ -117,7 +117,7 @@ TEST(ShellIntegrationTest, GetDesktopShortcutTemplate) {
|
| }
|
|
|
| {
|
| - ScopedTempDir temp_dir;
|
| + base::ScopedTempDir temp_dir;
|
| ASSERT_TRUE(temp_dir.CreateUniqueTempDir());
|
|
|
| MockEnvironment env;
|
|
|