blob: 29826715b13df00cb5076d8e7d44f4ff4f9a62ad [file] [log] [blame]
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#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/initial_preferences.h"
namespace first_run {
namespace internal {
bool IsOrganicFirstRun() {
// We treat all installs as organic.
return true;
}
base::FilePath InitialPrefsPath() {
// The standard location of the initial prefs is next to the chrome binary.
base::FilePath initial_prefs;
if (!base::PathService::Get(base::DIR_EXE, &initial_prefs))
return base::FilePath();
return initial_prefs.AppendASCII(installer::kLegacyInitialPrefs);
}
} // namespace internal
} // namespace first_run