| Index: chrome/browser/sync/sync_global_error.cc
|
| ===================================================================
|
| --- chrome/browser/sync/sync_global_error.cc (revision 144460)
|
| +++ chrome/browser/sync/sync_global_error.cc (working copy)
|
| @@ -9,6 +9,7 @@
|
| #include "chrome/browser/sync/profile_sync_service_observer.h"
|
| #include "chrome/browser/sync/sync_ui_util.h"
|
| #include "chrome/browser/ui/browser.h"
|
| +#include "chrome/browser/ui/browser_commands.h"
|
| #include "chrome/browser/ui/global_error_service.h"
|
| #include "chrome/browser/ui/global_error_service_factory.h"
|
| #include "chrome/browser/ui/webui/signin/login_ui_service.h"
|
| @@ -59,7 +60,8 @@
|
| #if defined(OS_CHROMEOS)
|
| if (service_->GetAuthError().state() != AuthError::NONE) {
|
| DLOG(INFO) << "Signing out the user to fix a sync error.";
|
| - browser->ExecuteCommand(IDC_EXIT);
|
| + // TODO(beng): seems like this could just call browser::AttemptUserExit().
|
| + chrome::ExecuteCommand(browser, IDC_EXIT);
|
| return;
|
| }
|
| #endif
|
|
|