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

Unified Diff: chrome/browser/sync/test/integration/sync_extension_helper.cc

Issue 99923002: Move temp file 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
Index: chrome/browser/sync/test/integration/sync_extension_helper.cc
diff --git a/chrome/browser/sync/test/integration/sync_extension_helper.cc b/chrome/browser/sync/test/integration/sync_extension_helper.cc
index e7ff318079f87514a218c37e1596694918504206..0979ef44b7c1821f270372302f48bbb4fc0b230d 100644
--- a/chrome/browser/sync/test/integration/sync_extension_helper.cc
+++ b/chrome/browser/sync/test/integration/sync_extension_helper.cc
@@ -312,8 +312,8 @@ scoped_refptr<Extension> CreateExtension(const base::FilePath& base_dir,
ADD_FAILURE();
return NULL;
}
- if (!file_util::CreateTemporaryDirInDir(
- base_dir, sub_dir.value(), &extension_dir)) {
+ if (!base::CreateTemporaryDirInDir(base_dir, sub_dir.value(),
+ &extension_dir)) {
ADD_FAILURE();
return NULL;
}
« no previous file with comments | « chrome/browser/shell_integration_win_unittest.cc ('k') | chrome/browser/sync_file_system/drive_backend/drive_backend_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698