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

Unified Diff: content/shell/browser/layout_test/layout_test_push_messaging_service.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/shell/browser/layout_test/layout_test_push_messaging_service.cc
diff --git a/content/shell/browser/layout_test/layout_test_push_messaging_service.cc b/content/shell/browser/layout_test/layout_test_push_messaging_service.cc
index 15f63ff1ba5bc495a4740227c3d201e5d6aba620..c191ffd5937a5983948291780c642e787d156000 100644
--- a/content/shell/browser/layout_test/layout_test_push_messaging_service.cc
+++ b/content/shell/browser/layout_test/layout_test_push_messaging_service.cc
@@ -39,13 +39,13 @@ static_assert(sizeof(kAuthentication) == 12,
"The fake authentication key must be at least 12 bytes in size.");
blink::WebPushPermissionStatus ToWebPushPermissionStatus(
- mojom::PermissionStatus status) {
+ blink::mojom::PermissionStatus status) {
switch (status) {
- case mojom::PermissionStatus::GRANTED:
+ case blink::mojom::PermissionStatus::GRANTED:
return blink::WebPushPermissionStatusGranted;
- case mojom::PermissionStatus::DENIED:
+ case blink::mojom::PermissionStatus::DENIED:
return blink::WebPushPermissionStatusDenied;
- case mojom::PermissionStatus::ASK:
+ case blink::mojom::PermissionStatus::ASK:
return blink::WebPushPermissionStatusPrompt;
}
« no previous file with comments | « content/shell/browser/layout_test/layout_test_permission_manager.cc ('k') | content/shell/browser/shell_permission_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698