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

Unified Diff: chrome/browser/extensions/platform_app_browsertest.cc

Issue 18332014: Move Copy* into the base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 months 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/extensions/platform_app_browsertest.cc
diff --git a/chrome/browser/extensions/platform_app_browsertest.cc b/chrome/browser/extensions/platform_app_browsertest.cc
index 28168bbb9c799a62f517ff005b78031bb387bdcd..459aee0ee21fd130c3c6e99733a82ec9fa6f482e 100644
--- a/chrome/browser/extensions/platform_app_browsertest.cc
+++ b/chrome/browser/extensions/platform_app_browsertest.cc
@@ -111,7 +111,7 @@ bool CopyTestDataAndSetCommandLineArg(
const char* filename) {
base::FilePath path = temp_dir.AppendASCII(
filename).NormalizePathSeparators();
- if (!(file_util::CopyFile(test_data_file, path)))
+ if (!(base::CopyFile(test_data_file, path)))
return false;
CommandLine* command_line = CommandLine::ForCurrentProcess();

Powered by Google App Engine
This is Rietveld 408576698