Index: content/renderer/active_notification_tracker_unittest.cc |
diff --git a/content/renderer/active_notification_tracker_unittest.cc b/content/renderer/active_notification_tracker_unittest.cc |
index 714a0d110e43045bf35133eceffa354efa023093..88e8dcd054a89f5ff671be560c093ab12091da2f 100644 |
--- a/content/renderer/active_notification_tracker_unittest.cc |
+++ b/content/renderer/active_notification_tracker_unittest.cc |
@@ -10,13 +10,13 @@ namespace content { |
TEST(ActiveNotificationTrackerTest, TestLookupAndClear) { |
ActiveNotificationTracker tracker; |
- WebKit::WebNotification notification1; |
+ blink::WebNotification notification1; |
int id1 = tracker.RegisterNotification(notification1); |
- WebKit::WebNotification notification2; |
+ blink::WebNotification notification2; |
int id2 = tracker.RegisterNotification(notification2); |
- WebKit::WebNotification result; |
+ blink::WebNotification result; |
tracker.GetNotification(id1, &result); |
EXPECT_TRUE(result == notification1); |