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

Unified Diff: content/renderer/active_notification_tracker_unittest.cc

Issue 63253002: Rename WebKit namespace to blink (part 3) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month 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
« no previous file with comments | « content/renderer/active_notification_tracker.cc ('k') | content/renderer/android/content_detector.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
« no previous file with comments | « content/renderer/active_notification_tracker.cc ('k') | content/renderer/android/content_detector.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698