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

Unified Diff: content/browser/background_sync/background_sync_manager_unittest.cc

Issue 1960843002: [OnionSoup] Move background_sync.mojom from //content to //third_party/WebKit (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address dcheng@'s comment Created 4 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: content/browser/background_sync/background_sync_manager_unittest.cc
diff --git a/content/browser/background_sync/background_sync_manager_unittest.cc b/content/browser/background_sync/background_sync_manager_unittest.cc
index 2ef0f0b45848df5969b10ae2fe4d55feaa3f3c3d..cd33ca6a7746ebbe5122343146229725d8a5f3c0 100644
--- a/content/browser/background_sync/background_sync_manager_unittest.cc
+++ b/content/browser/background_sync/background_sync_manager_unittest.cc
@@ -1307,7 +1307,7 @@ TEST_F(BackgroundSyncManagerTest, LastChance) {
InitFailedSyncEventTest();
EXPECT_TRUE(Register(sync_options_1_));
- EXPECT_EQ(mojom::BackgroundSyncEventLastChance::IS_NOT_LAST_CHANCE,
+ EXPECT_EQ(blink::mojom::BackgroundSyncEventLastChance::IS_NOT_LAST_CHANCE,
test_background_sync_manager_->last_chance());
EXPECT_TRUE(GetRegistration(sync_options_1_));
@@ -1316,7 +1316,7 @@ TEST_F(BackgroundSyncManagerTest, LastChance) {
test_background_sync_manager_->delayed_task().Run();
base::RunLoop().RunUntilIdle();
EXPECT_FALSE(GetRegistration(sync_options_1_));
- EXPECT_EQ(mojom::BackgroundSyncEventLastChance::IS_LAST_CHANCE,
+ EXPECT_EQ(blink::mojom::BackgroundSyncEventLastChance::IS_LAST_CHANCE,
test_background_sync_manager_->last_chance());
}

Powered by Google App Engine
This is Rietveld 408576698