Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4710)

Unified Diff: chrome/installer/mini_installer/decompress_test.cc

Issue 11359217: Move scoped_temp_dir from base to base/files (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/common/zip_unittest.cc ('k') | chrome/installer/setup/chrome_frame_quick_enable.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/installer/mini_installer/decompress_test.cc
diff --git a/chrome/installer/mini_installer/decompress_test.cc b/chrome/installer/mini_installer/decompress_test.cc
index 5bf5340110cd57150e7e10880cffe83ed33e0f45..d820d666782926f7bb04c720c957f9b68d680f0f 100644
--- a/chrome/installer/mini_installer/decompress_test.cc
+++ b/chrome/installer/mini_installer/decompress_test.cc
@@ -5,8 +5,8 @@
#include <windows.h>
#include "base/file_path.h"
+#include "base/files/scoped_temp_dir.h"
#include "base/path_service.h"
-#include "base/scoped_temp_dir.h"
#include "chrome/installer/mini_installer/decompress.h"
#include "testing/gtest/include/gtest/gtest.h"
@@ -21,7 +21,7 @@ TEST(MiniDecompressTest, ExpandTest) {
// Prepare a temp folder that will be automatically deleted along with
// our temporary test data.
- ScopedTempDir temp_dir;
+ base::ScopedTempDir temp_dir;
EXPECT_TRUE(temp_dir.CreateUniqueTempDir());
FilePath dest_path(temp_dir.path().Append(FILE_PATH_LITERAL("setup.exe")));
« no previous file with comments | « chrome/common/zip_unittest.cc ('k') | chrome/installer/setup/chrome_frame_quick_enable.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698