| Index: chrome/browser/sync/sync_global_error.cc
|
| diff --git a/chrome/browser/sync/sync_global_error.cc b/chrome/browser/sync/sync_global_error.cc
|
| index 622ad76a9d462b83e0987a9fa3748ba575035c4c..11c2a2c3c5af6fd54c70cf04f380aa81cd8d0ce5 100644
|
| --- a/chrome/browser/sync/sync_global_error.cc
|
| +++ b/chrome/browser/sync/sync_global_error.cc
|
| @@ -64,8 +64,8 @@ string16 SyncGlobalError::GetBubbleViewTitle() {
|
| return l10n_util::GetStringUTF16(IDS_SYNC_ERROR_BUBBLE_VIEW_TITLE);
|
| }
|
|
|
| -string16 SyncGlobalError::GetBubbleViewMessage() {
|
| - return bubble_message_;
|
| +std::vector<string16> SyncGlobalError::GetBubbleViewMessages() {
|
| + return std::vector<string16>(1, bubble_message_);
|
| }
|
|
|
| string16 SyncGlobalError::GetBubbleViewAcceptButtonLabel() {
|
|
|