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

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

Issue 1771743002: Move geolocation and permission mojoms into WebKit/public/platform. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 9 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_service_impl_unittest.cc
diff --git a/content/browser/background_sync/background_sync_service_impl_unittest.cc b/content/browser/background_sync/background_sync_service_impl_unittest.cc
index 5b9c329e5e0fe2f52f28f6d233852c165dcd3f8a..5927f0572ef140ef84f6772d28fd9bef804d844a 100644
--- a/content/browser/background_sync/background_sync_service_impl_unittest.cc
+++ b/content/browser/background_sync/background_sync_service_impl_unittest.cc
@@ -122,7 +122,8 @@ class BackgroundSyncServiceImplTest : public testing::Test {
new testing::NiceMock<MockPermissionManager>());
ON_CALL(*mock_permission_manager,
GetPermissionStatus(PermissionType::BACKGROUND_SYNC, _, _))
- .WillByDefault(testing::Return(mojom::PermissionStatus::GRANTED));
+ .WillByDefault(
+ testing::Return(blink::mojom::PermissionStatus::GRANTED));
embedded_worker_helper_->browser_context()->SetPermissionManager(
std::move(mock_permission_manager));
}

Powered by Google App Engine
This is Rietveld 408576698