Index: trunk/src/ui/message_center/cocoa/notification_controller_unittest.mm |
=================================================================== |
--- trunk/src/ui/message_center/cocoa/notification_controller_unittest.mm (revision 220506) |
+++ trunk/src/ui/message_center/cocoa/notification_controller_unittest.mm (working copy) |
@@ -84,10 +84,6 @@ |
return message_.get(); |
} |
-- (NSTextField*)contextMessageView { |
- return contextMessage_.get(); |
-} |
- |
- (NSView*)listItemView { |
return listItemView_.get(); |
} |
@@ -276,7 +272,6 @@ |
UTF8ToUTF16("Second title"), |
UTF8ToUTF16("second slightly longer message")); |
optional.items.push_back(item2); |
- optional.context_message = UTF8ToUTF16("Context Message"); |
scoped_ptr<message_center::Notification> notification( |
new message_center::Notification( |
@@ -298,7 +293,6 @@ |
EXPECT_FALSE([[controller titleView] isHidden]); |
EXPECT_TRUE([[controller messageView] isHidden]); |
- EXPECT_FALSE([[controller contextMessageView] isHidden]); |
EXPECT_EQ(2u, [[[controller listItemView] subviews] count]); |
EXPECT_LT(NSMaxY([[controller listItemView] frame]), |