Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8)

Unified Diff: chrome/browser/first_run/first_run_posix.cc

Issue 10756023: Fix the first_run regression issue related to skip_first_run_ui setting processing. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/first_run/first_run_posix.cc
diff --git a/chrome/browser/first_run/first_run_posix.cc b/chrome/browser/first_run/first_run_posix.cc
index f058e256c2dbe6bf04d9ec8c65564b31a6265d47..4059c7a8a331d0145f74e39473971cdba4305a79 100644
--- a/chrome/browser/first_run/first_run_posix.cc
+++ b/chrome/browser/first_run/first_run_posix.cc
@@ -147,7 +147,7 @@ bool ProcessMasterPreferences(const FilePath& user_data_dir,
internal::SetupMasterPrefsFromInstallPrefs(out_prefs,
install_prefs.get());
- if (!internal::SkipFirstRunUI(install_prefs.get()))
+ if (internal::NotSkipFirstRunUI(install_prefs.get()))
return true;
// From here on we won't show first run so we need to do the work to show the

Powered by Google App Engine
This is Rietveld 408576698