| Index: chrome/browser/ui/views/notifications/balloon_view.cc
|
| diff --git a/chrome/browser/ui/views/notifications/balloon_view.cc b/chrome/browser/ui/views/notifications/balloon_view.cc
|
| index 62f3f318bdc78943f2c37aac1b98e9d356f353d8..1caca165a7c4b25e0976abd1b52f67005fb721d0 100644
|
| --- a/chrome/browser/ui/views/notifications/balloon_view.cc
|
| +++ b/chrome/browser/ui/views/notifications/balloon_view.cc
|
| @@ -4,6 +4,7 @@
|
|
|
| #include "chrome/browser/ui/views/notifications/balloon_view.h"
|
|
|
| +#include <algorithm>
|
| #include <vector>
|
|
|
| #include "base/message_loop.h"
|
| @@ -285,7 +286,7 @@ void BalloonViewImpl::Show(Balloon* balloon) {
|
| IDS_NOTIFICATION_BALLOON_SOURCE_LABEL,
|
| balloon->notification().display_source());
|
|
|
| - source_label_ = new views::Label(UTF16ToWide(source_label_text));
|
| + source_label_ = new views::Label(source_label_text);
|
| AddChildView(source_label_);
|
| options_menu_button_ = new views::MenuButton(NULL, L"", this, false);
|
| AddChildView(options_menu_button_);
|
|
|