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

Unified Diff: chrome/browser/policy/config_dir_policy_provider.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/policy/config_dir_policy_provider.cc
===================================================================
--- chrome/browser/policy/config_dir_policy_provider.cc (revision 58317)
+++ chrome/browser/policy/config_dir_policy_provider.cc (working copy)
@@ -146,7 +146,7 @@
bool PolicyDirLoader::IsSafeToReloadPolicy(const base::Time& now,
base::TimeDelta* delay) {
DCHECK(delay);
- file_util::FileInfo dir_info;
+ base::PlatformFileInfo dir_info;
// Reading an empty directory or a file is always safe.
if (!file_util::GetFileInfo(config_dir_, &dir_info) ||

Powered by Google App Engine
This is Rietveld 408576698