Index: chrome/browser/ui/webui/options/browser_options_handler.cc |
diff --git a/chrome/browser/ui/webui/options/browser_options_handler.cc b/chrome/browser/ui/webui/options/browser_options_handler.cc |
index 3febc2538fb0b5865f41643e09b1003d75afa939..a6ff30ae9081f52ecf92c50d816a4d4f344e864f 100644 |
--- a/chrome/browser/ui/webui/options/browser_options_handler.cc |
+++ b/chrome/browser/ui/webui/options/browser_options_handler.cc |
@@ -1551,10 +1551,12 @@ BrowserOptionsHandler::GetSyncStateDictionary() { |
base::string16 status_label; |
base::string16 link_label; |
+ sync_ui_util::ActionType action_type = sync_ui_util::NO_ACTION; |
bool status_has_error = |
sync_ui_util::GetStatusLabels(profile, service, *signin, |
sync_ui_util::WITH_HTML, &status_label, |
- &link_label) == sync_ui_util::SYNC_ERROR; |
+ &link_label, &action_type) == |
+ sync_ui_util::SYNC_ERROR; |
sync_status->SetString("statusText", status_label); |
sync_status->SetString("actionLinkText", link_label); |
sync_status->SetBoolean("hasError", status_has_error); |