| Index: chrome/browser/notifications/message_center_notifications_browsertest.cc
|
| diff --git a/chrome/browser/notifications/message_center_notifications_browsertest.cc b/chrome/browser/notifications/message_center_notifications_browsertest.cc
|
| index 84cde473fc6c8155b202e0c4229992adfa9e59c1..0213ec193481fd0ee652410399013a1700fa0d3d 100644
|
| --- a/chrome/browser/notifications/message_center_notifications_browsertest.cc
|
| +++ b/chrome/browser/notifications/message_center_notifications_browsertest.cc
|
| @@ -150,10 +150,6 @@ class MessageCenterNotificationsTest : public InProcessBrowserTest {
|
| }
|
| };
|
|
|
| -// TODO(rsesek): Implement Message Center on Mac and get these tests passing
|
| -// for real. http://crbug.com/179904
|
| -#if !defined(OS_MACOSX)
|
| -
|
| IN_PROC_BROWSER_TEST_F(MessageCenterNotificationsTest, RetrieveBaseParts) {
|
| // Make sure comamnd-line switch has an effect.
|
| EXPECT_EQ(NotificationUIManager::DelegatesToMessageCenter(),
|
| @@ -412,7 +408,8 @@ IN_PROC_BROWSER_TEST_F(MessageCenterNotificationsTest,
|
| delegate->Release();
|
| }
|
|
|
| -#if !defined(OS_CHROMEOS) && defined(RUN_MESSAGE_CENTER_TESTS)
|
| +#if !defined(OS_CHROMEOS) && !defined(OS_MACOSX) && \
|
| + defined(RUN_MESSAGE_CENTER_TESTS)
|
| #define MAYBE_HideWhenFullscreenEnabled HideWhenFullscreenEnabled
|
| #else
|
| #define MAYBE_HideWhenFullscreenEnabled DISABLED_HideWhenFullscreenEnabled
|
| @@ -436,5 +433,3 @@ IN_PROC_BROWSER_TEST_F(MessageCenterNotificationsTest,
|
| content::Details<bool>(&is_fullscreen));
|
| EXPECT_FALSE(message_center()->HasPopupNotifications());
|
| }
|
| -
|
| -#endif // !defined(OS_MACOSX)
|
|
|