diff options
author | mirandac@chromium.org <mirandac@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-14 18:08:06 +0000 |
---|---|---|
committer | mirandac@chromium.org <mirandac@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-14 18:08:06 +0000 |
commit | c70d067f569f4d927e7be8f221f856812af396d7 (patch) | |
tree | 6c63265568e7c0da519b3da6fd94fa931f016c5d | |
parent | 90e767f4718ab33b2f3162ea5a4a9821e794955a (diff) | |
download | chromium_src-c70d067f569f4d927e7be8f221f856812af396d7.zip chromium_src-c70d067f569f4d927e7be8f221f856812af396d7.tar.gz chromium_src-c70d067f569f4d927e7be8f221f856812af396d7.tar.bz2 |
Reenable first run dialog on Mac by commenting out MasterPreferences reading stuff, which is not yet available for OS X. While this is not commented out, first run dialog will *always* be bypassed.
BUG= none
TEST= you can get the 1st run dialog on Mac again.
Review URL: http://codereview.chromium.org/929001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@41551 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | chrome/browser/first_run.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/first_run.cc b/chrome/browser/first_run.cc index dacf4f6..c6d7ac7 100644 --- a/chrome/browser/first_run.cc +++ b/chrome/browser/first_run.cc @@ -116,6 +116,6 @@ bool FirstRun::SetOEMFirstRunBubblePref() { bool FirstRun::ProcessMasterPreferences(const FilePath& user_data_dir, const FilePath& master_prefs_path, MasterPrefs* out_prefs) { NOTIMPLEMENTED(); - return false; + return true; } #endif |