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

Unified Diff: chrome_frame/test/perf/chrome_frame_perftest.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_frame/test/perf/chrome_frame_perftest.cc
diff --git a/chrome_frame/test/perf/chrome_frame_perftest.cc b/chrome_frame/test/perf/chrome_frame_perftest.cc
index 5f1a0f1ce4a4cb52e201dfd193571518671fcb5b..80cef1073f1e5621d82958d3aca394fb319c099a 100644
--- a/chrome_frame/test/perf/chrome_frame_perftest.cc
+++ b/chrome_frame/test/perf/chrome_frame_perftest.cc
@@ -959,7 +959,7 @@ TEST(ImagePreReader, PreReadImage) {
ASSERT_TRUE(PathService::Get(base::FILE_EXE, &current_exe));
int64 file_size_64 = 0;
- ASSERT_TRUE(file_util::GetFileSize(current_exe, &file_size_64));
+ ASSERT_TRUE(base::GetFileSize(current_exe, &file_size_64));
ASSERT_TRUE(file_size_64 < std::numeric_limits<std::size_t>::max());
size_t file_size = static_cast<size_t>(file_size_64);
« no previous file with comments | « chrome/installer/util/logging_installer_unittest.cc ('k') | cloud_print/virtual_driver/win/port_monitor/port_monitor.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698