Index: chrome/browser/notifications/notification_conversion_helper.cc |
diff --git a/chrome/browser/notifications/notification_conversion_helper.cc b/chrome/browser/notifications/notification_conversion_helper.cc |
index b0eec8322be26b339c7c1fb9089b26c4d3258096..526204cf5f8cd2be1952450e89e00c1802ac9eb5 100644 |
--- a/chrome/browser/notifications/notification_conversion_helper.cc |
+++ b/chrome/browser/notifications/notification_conversion_helper.cc |
@@ -53,9 +53,9 @@ void NotificationConversionHelper::NotificationToNotificationOptions( |
options->event_time.reset(new double(rich_data->timestamp.ToDoubleT())); |
- if (!rich_data->context_message.empty()) |
+ if (!rich_data->context_message.message.empty()) |
options->context_message.reset( |
- new std::string(base::UTF16ToUTF8(rich_data->context_message))); |
+ new std::string(rich_data->context_message.message)); |
if (!rich_data->buttons.empty()) { |
scoped_ptr<std::vector< |