This source file includes following definitions.
- IsOrganicFirstRun
- MasterPrefsPath
#include "chrome/browser/first_run/first_run_internal.h"
#include "base/base_paths.h"
#include "base/files/file_path.h"
#include "base/path_service.h"
#include "chrome/installer/util/master_preferences.h"
namespace first_run {
namespace internal {
bool IsOrganicFirstRun() {
return true;
}
base::FilePath MasterPrefsPath() {
base::FilePath master_prefs;
if (!PathService::Get(base::DIR_EXE, &master_prefs))
return base::FilePath();
return master_prefs.AppendASCII(installer::kDefaultMasterPrefs);
}
}
}