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

Unified Diff: chrome/browser/chromeos/drive/file_system/truncate_operation_unittest.cc

Issue 102873002: Move GetFileSize, NormalizeFilePath 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/chromeos/drive/file_system/truncate_operation_unittest.cc
diff --git a/chrome/browser/chromeos/drive/file_system/truncate_operation_unittest.cc b/chrome/browser/chromeos/drive/file_system/truncate_operation_unittest.cc
index 7d48c664d520f876f3653903b523fdcc6aebbf84..ce9312a880998f810333ad215193c3a05d72bbcd 100644
--- a/chrome/browser/chromeos/drive/file_system/truncate_operation_unittest.cc
+++ b/chrome/browser/chromeos/drive/file_system/truncate_operation_unittest.cc
@@ -60,7 +60,7 @@ TEST_F(TruncateOperationTest, Truncate) {
// The local file should be truncated.
int64 local_file_size = 0;
- file_util::GetFileSize(local_path, &local_file_size);
+ base::GetFileSize(local_path, &local_file_size);
EXPECT_EQ(1, local_file_size);
}

Powered by Google App Engine
This is Rietveld 408576698