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

Unified Diff: chrome_frame/test/dll_redirector_loading_test.cc

Issue 100573002: Move directory creation functions to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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/utility/extensions/unpacker.cc ('k') | chromeos/dbus/cros_disks_client.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_frame/test/dll_redirector_loading_test.cc
diff --git a/chrome_frame/test/dll_redirector_loading_test.cc b/chrome_frame/test/dll_redirector_loading_test.cc
index c6df84d561ecd87c52159c25e3e88290167fc832..efafa7c90f76f79e0a52b0a320b72cd3d47564ab 100644
--- a/chrome_frame/test/dll_redirector_loading_test.cc
+++ b/chrome_frame/test/dll_redirector_loading_test.cc
@@ -55,7 +55,7 @@ class DllRedirectorLoadingTest : public testing::Test {
// Make a versioned dir for the original chrome frame dll to run under.
base::FilePath original_version_dir(
temp_dir_.path().AppendASCII(original_version_->GetString()));
- ASSERT_TRUE(file_util::CreateDirectory(original_version_dir));
+ ASSERT_TRUE(base::CreateDirectory(original_version_dir));
// Now move the original DLL that we will operate on into a named-version
// folder.
@@ -90,7 +90,7 @@ class DllRedirectorLoadingTest : public testing::Test {
// Now move the new Chrome Frame dll to its final resting place:
base::FilePath new_version_dir(
temp_dir_.path().AppendASCII(new_version_->GetString()));
- ASSERT_TRUE(file_util::CreateDirectory(new_version_dir));
+ ASSERT_TRUE(base::CreateDirectory(new_version_dir));
new_chrome_frame_dll_ =
new_version_dir.Append(build_chrome_frame_dll.BaseName());
ASSERT_TRUE(base::Move(temporary_new_chrome_frame_dll,
« no previous file with comments | « chrome/utility/extensions/unpacker.cc ('k') | chromeos/dbus/cros_disks_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698