 Chromium Code Reviews
 Chromium Code Reviews Issue 16950027:
  Move ComputeDirectorySize to the base namespace.  (Closed) 
  Base URL: svn://svn.chromium.org/chrome/trunk/src
    
  
    Issue 16950027:
  Move ComputeDirectorySize to the base namespace.  (Closed) 
  Base URL: svn://svn.chromium.org/chrome/trunk/src| Index: base/file_util_unittest.cc | 
| diff --git a/base/file_util_unittest.cc b/base/file_util_unittest.cc | 
| index 4df797ea46bfa29db7db0f945af4e7724ad6ea1a..cbe8f26ea0545bdc06dc6c29afc026ae3a74fe5a 100644 | 
| --- a/base/file_util_unittest.cc | 
| +++ b/base/file_util_unittest.cc | 
| @@ -336,7 +336,7 @@ TEST_F(FileUtilTest, FileAndDirectorySize) { | 
| FilePath file_03 = subsubdir_path.Append(FPL("The file 03.txt")); | 
| CreateTextFile(file_03, L"123"); | 
| - int64 computed_size = file_util::ComputeDirectorySize(temp_dir_.path()); | 
| + int64 computed_size = base::ComputeDirectorySize(temp_dir_.path()); | 
| 
tfarina
2013/06/21 23:30:47
to make our lives easier in a future CL we can wra
 | 
| EXPECT_EQ(size_f1 + size_f2 + 3, computed_size); | 
| } |