| Index: chrome/browser/ui/webui/options/chromeos/about_page_handler.cc
|
| diff --git a/chrome/browser/ui/webui/options/chromeos/about_page_handler.cc b/chrome/browser/ui/webui/options/chromeos/about_page_handler.cc
|
| index 9bfe4f5f39b528b81d0135e9f237ab3a90a29b3d..4cbb46c83e45e3478e4531d2bd744aaa2d3452e7 100644
|
| --- a/chrome/browser/ui/webui/options/chromeos/about_page_handler.cc
|
| +++ b/chrome/browser/ui/webui/options/chromeos/about_page_handler.cc
|
| @@ -290,9 +290,8 @@ void AboutPageHandler::SetReleaseTrack(const ListValue* args) {
|
|
|
| void AboutPageHandler::CheckNow(const ListValue* args) {
|
| // Make sure that libcros is loaded and OOBE is complete.
|
| - if (CrosLibrary::Get()->EnsureLoaded() &&
|
| - (!WizardController::default_controller() ||
|
| - WizardController::IsDeviceRegistered())) {
|
| + if (!WizardController::default_controller() ||
|
| + WizardController::IsDeviceRegistered()) {
|
| CrosLibrary::Get()->GetUpdateLibrary()->
|
| RequestUpdateCheck(NULL, // no callback
|
| NULL); // no userdata
|
|
|