| Index: ui/message_center/cocoa/notification_controller.mm
|
| diff --git a/ui/message_center/cocoa/notification_controller.mm b/ui/message_center/cocoa/notification_controller.mm
|
| index a2e814199b227c38b3dea4b427df24304d6c209a..ade983f15f817b173d31b062c83b7056a4f20009 100644
|
| --- a/ui/message_center/cocoa/notification_controller.mm
|
| +++ b/ui/message_center/cocoa/notification_controller.mm
|
| @@ -227,8 +227,8 @@
|
| // more than the given number of lines. The wrapped text would be painted using
|
| // the given font. The Ellipsis could be added at the end of the last line if
|
| // it is too long.
|
| -- (string16)wrapText:(const base::string16&)text
|
| - forFont:(NSFont*)font
|
| +- (base::string16)wrapText:(const base::string16&)text
|
| + forFont:(NSFont*)font
|
| maxNumberOfLines:(size_t)lines;
|
| @end
|
|
|
| @@ -724,8 +724,8 @@
|
| return contentFrame;
|
| }
|
|
|
| -- (string16)wrapText:(const base::string16&)text
|
| - forFont:(NSFont*)nsfont
|
| +- (base::string16)wrapText:(const base::string16&)text
|
| + forFont:(NSFont*)nsfont
|
| maxNumberOfLines:(size_t)lines {
|
| if (text.empty())
|
| return text;
|
|
|