| Index: chrome/browser/ui/webui/options/personal_options_handler.cc
|
| ===================================================================
|
| --- chrome/browser/ui/webui/options/personal_options_handler.cc (revision 84869)
|
| +++ chrome/browser/ui/webui/options/personal_options_handler.cc (working copy)
|
| @@ -374,20 +374,20 @@
|
| void PersonalOptionsHandler::ShowSyncActionDialog(const ListValue* args) {
|
| ProfileSyncService* service = web_ui_->GetProfile()->GetProfileSyncService();
|
| DCHECK(service);
|
| - service->ShowErrorUI();
|
| + service->ShowErrorUI(web_ui_);
|
| }
|
|
|
| void PersonalOptionsHandler::ShowSyncLoginDialog(const ListValue* args) {
|
| ProfileSyncService* service = web_ui_->GetProfile()->GetProfileSyncService();
|
| DCHECK(service);
|
| - service->ShowLoginDialog();
|
| + service->ShowLoginDialog(web_ui_);
|
| ProfileSyncService::SyncEvent(ProfileSyncService::START_FROM_OPTIONS);
|
| }
|
|
|
| void PersonalOptionsHandler::ShowCustomizeSyncDialog(const ListValue* args) {
|
| ProfileSyncService* service = web_ui_->GetProfile()->GetProfileSyncService();
|
| DCHECK(service);
|
| - service->ShowConfigure(false);
|
| + service->ShowConfigure(web_ui_, false);
|
| }
|
|
|
| void PersonalOptionsHandler::ThemesReset(const ListValue* args) {
|
| @@ -420,5 +420,4 @@
|
| image_url);
|
| }
|
| }
|
| -
|
| #endif
|
|
|