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

Unified Diff: chrome/utility/extensions/unpacker.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/tools/crash_service/main.cc ('k') | chrome_frame/test/dll_redirector_loading_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/utility/extensions/unpacker.cc
diff --git a/chrome/utility/extensions/unpacker.cc b/chrome/utility/extensions/unpacker.cc
index 371c59ff71814ecd9710c08de793520767d3cb0a..10b95b96d2e9622884d37946b1a6478821c62b6f 100644
--- a/chrome/utility/extensions/unpacker.cc
+++ b/chrome/utility/extensions/unpacker.cc
@@ -170,7 +170,7 @@ bool Unpacker::Run() {
temp_install_dir_ =
extension_path_.DirName().AppendASCII(kTempExtensionName);
- if (!file_util::CreateDirectory(temp_install_dir_)) {
+ if (!base::CreateDirectory(temp_install_dir_)) {
SetUTF16Error(
l10n_util::GetStringFUTF16(
IDS_EXTENSION_PACKAGE_DIRECTORY_ERROR,
« no previous file with comments | « chrome/tools/crash_service/main.cc ('k') | chrome_frame/test/dll_redirector_loading_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698