| 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) {
|
|
|