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

Unified Diff: chrome/test/automated_ui_tests/automated_ui_tests.cc

Issue 3347005: Moving file_util::FileInfo to base::PlatformFileInfo, and adding the... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 4 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/test/automated_ui_tests/automated_ui_tests.cc
===================================================================
--- chrome/test/automated_ui_tests/automated_ui_tests.cc (revision 58317)
+++ chrome/test/automated_ui_tests/automated_ui_tests.cc (working copy)
@@ -711,7 +711,7 @@
file_util::FileEnumerator::FILES);
for (FilePath path = enumerator.Next(); !path.value().empty();
path = enumerator.Next()) {
- file_util::FileInfo file_info;
+ base::PlatformFileInfo file_info;
GetFileInfo(path, &file_info);
if (first_file) {
most_recent_file_time = file_info.last_modified;

Powered by Google App Engine
This is Rietveld 408576698