Mark OOBE process as completed in Local State.
Add 10% when checking for update. If image is not cached on server it will take some time.

BUG= http://crosbug.com/4208, http://crosbug.com/4003
TEST=Manual. Start with fresh install. After Sign In screen is shown, select BWSI and then Sign out. OOBE should not be started again.

Review URL: http://codereview.chromium.org/2833038

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51250 0039d316-1c4b-4281-b951-d872f2087c98
diff --git a/chrome/browser/browser_prefs.cc b/chrome/browser/browser_prefs.cc
index 8f45a15c..b9cf9f1 100644
--- a/chrome/browser/browser_prefs.cc
+++ b/chrome/browser/browser_prefs.cc
@@ -56,6 +56,7 @@
 
 #if defined(OS_CHROMEOS)
 #include "chrome/browser/chromeos/login/user_manager.h"
+#include "chrome/browser/chromeos/login/wizard_controller.h"
 #include "chrome/browser/chromeos/preferences.h"
 #endif
 
@@ -90,6 +91,7 @@
   AutoFillManager::RegisterBrowserPrefs(local_state);
 #if defined(OS_CHROMEOS)
   chromeos::UserManager::RegisterPrefs(local_state);
+  WizardController::RegisterPrefs(local_state);
 #endif
 }