Commit bd3af02d authored by gab@chromium.org's avatar gab@chromium.org

Remove unused method GetProfilePrefsPath().

BUG=343692

Review URL: https://codereview.chromium.org/165113002

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@251390 0039d316-1c4b-4281-b951-d872f2087c98
parent 2d9c9290
......@@ -44,13 +44,6 @@ base::FilePath GetDefaultProfileDir(const base::FilePath& user_data_dir) {
return default_profile_dir;
}
base::FilePath GetProfilePrefsPath(
const base::FilePath &profile_dir) {
base::FilePath default_prefs_path(profile_dir);
default_prefs_path = default_prefs_path.Append(chrome::kPreferencesFilename);
return default_prefs_path;
}
void RegisterPrefs(PrefRegistrySimple* registry) {
registry->RegisterStringPref(prefs::kProfileLastUsed, std::string());
registry->RegisterIntegerPref(prefs::kProfilesNumCreated, 1);
......
......@@ -22,9 +22,6 @@ bool IsMultipleProfilesEnabled();
// user data directory.
base::FilePath GetDefaultProfileDir(const base::FilePath& user_data_dir);
// Returns the path to the preferences file given the user profile directory.
base::FilePath GetProfilePrefsPath(const base::FilePath& profile_dir);
// Register multi-profile related preferences in Local State.
void RegisterPrefs(PrefRegistrySimple* registry);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment