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

Unified Diff: chrome/browser/first_run/first_run_gtk.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/browser/first_run/first_run_gtk.cc
===================================================================
--- chrome/browser/first_run/first_run_gtk.cc (revision 58317)
+++ chrome/browser/first_run/first_run_gtk.cc (working copy)
@@ -124,7 +124,7 @@
LOG(WARNING) << "Failed to get FilePath object for FILE_EXE.";
return saved_last_modified_time_of_exe_;
}
- file_util::FileInfo exe_file_info;
+ base::PlatformFileInfo exe_file_info;
if (!file_util::GetFileInfo(exe_file_path, &exe_file_info)) {
LOG(WARNING) << "Failed to get FileInfo object for FILE_EXE - "
<< exe_file_path.value();

Powered by Google App Engine
This is Rietveld 408576698