Index: chrome/browser/first_run/first_run.h |
diff --git a/chrome/browser/first_run/first_run.h b/chrome/browser/first_run/first_run.h |
index 58911f3062a8d4a4a1282b9ee076ddd1b5fb619d..6932b3a7fae9320a90d3c8570508121921b651b1 100644 |
--- a/chrome/browser/first_run/first_run.h |
+++ b/chrome/browser/first_run/first_run.h |
@@ -160,16 +160,16 @@ uint16 auto_import_state(); |
// Set a master preferences file path that overrides platform defaults. |
void SetMasterPrefsPathForTesting(const base::FilePath& master_prefs); |
-// The master preferences is a JSON file with the same entries as the |
+// The master_preferences is a JSON file with the same entries as the |
// 'Default\Preferences' file. This function locates this file from a standard |
-// location and processes it so it becomes the default preferences in the |
-// profile pointed to by |user_data_dir|. After processing the file, the |
-// function returns a value from the ProcessMasterPreferencesResult enum, |
+// location, processes it, and uses its content to initialize the preferences |
+// for the profile pointed to by |user_data_dir|. After processing the file, |
+// this function returns a value from the ProcessMasterPreferencesResult enum, |
// indicating whether the first run flow should be shown, skipped, or whether |
// the browser should exit. |
// |
-// This function destroys any existing prefs file and it is meant to be |
-// invoked only on first run. |
+// This function overwrites any existing Preferences file and is only meant to |
+// be invoked on first run. |
// |
// See chrome/installer/util/master_preferences.h for a description of |
// 'master_preferences' file. |