Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(735)

Unified Diff: ui/message_center/views/message_center_view_unittest.cc

Issue 15582004: Move NotificationDelegate into message_center. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix Win browsertests. Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: ui/message_center/views/message_center_view_unittest.cc
diff --git a/ui/message_center/views/message_center_view_unittest.cc b/ui/message_center/views/message_center_view_unittest.cc
index 84ac652f9b7ba1188100e7db9ace888253d11c25..3a000f59c616c2f0245ca6bdac087c68000244c0 100644
--- a/ui/message_center/views/message_center_view_unittest.cc
+++ b/ui/message_center/views/message_center_view_unittest.cc
@@ -127,14 +127,14 @@ MessageCenterViewTest::~MessageCenterViewTest() {
void MessageCenterViewTest::SetUp() {
// Create a dummy notification.
- Notification notification(
- NOTIFICATION_TYPE_SIMPLE,
- std::string("notification id"),
- UTF8ToUTF16("title"),
- UTF8ToUTF16("message"),
- UTF8ToUTF16("display source"),
- std::string("extension id"),
- NULL);
+ Notification notification(NOTIFICATION_TYPE_SIMPLE,
+ std::string("notification id"),
+ UTF8ToUTF16("title"),
+ UTF8ToUTF16("message"),
+ UTF8ToUTF16("display source"),
+ std::string("extension id"),
+ NULL,
+ NULL);
// ...and a list for it.
NotificationList::Notifications notifications;

Powered by Google App Engine
This is Rietveld 408576698