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

Unified Diff: chrome/installer/util/eula_util.cc

Issue 18286004: Move PathExists to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 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
« no previous file with comments | « chrome/installer/util/duplicate_tree_detector_unittest.cc ('k') | chrome/installer/util/install_util.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/installer/util/eula_util.cc
diff --git a/chrome/installer/util/eula_util.cc b/chrome/installer/util/eula_util.cc
index 8fee49319198eb47b0ecb2d2c92e7010ae774173..25bcba86f2e333c9a8ae1912a3ed3aec6a578d6f 100644
--- a/chrome/installer/util/eula_util.cc
+++ b/chrome/installer/util/eula_util.cc
@@ -26,7 +26,7 @@ bool IsChromeFirstRunPending(BrowserDistribution* dist) {
return InstallUtil::GetSentinelFilePath(chrome::kFirstRunSentinel,
dist,
&first_run_sentinel)
- && !file_util::PathExists(first_run_sentinel);
+ && !base::PathExists(first_run_sentinel);
}
bool IsEULAAcceptanceFlagged(BrowserDistribution* dist) {
@@ -37,7 +37,7 @@ bool IsEULAAcceptanceFlagged(BrowserDistribution* dist) {
return InstallUtil::GetSentinelFilePath(kEULASentinelFile,
dist,
&eula_sentinel)
- && file_util::PathExists(eula_sentinel);
+ && base::PathExists(eula_sentinel);
}
scoped_ptr<MasterPreferences> GetMasterPrefs(const ProductState& prod_state) {
« no previous file with comments | « chrome/installer/util/duplicate_tree_detector_unittest.cc ('k') | chrome/installer/util/install_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698