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

Unified Diff: content/shell/common/shell_messages.h

Issue 395883002: Support layout testing Web Notifications from Document and Worker contexts. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 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/common/shell_messages.h
diff --git a/content/shell/common/shell_messages.h b/content/shell/common/shell_messages.h
index 54e8a50d402dc3cbc5aa95590cc38bb63fa406fe..0be743f4376a0731bd451fd7d717961dd74b9467 100644
--- a/content/shell/common/shell_messages.h
+++ b/content/shell/common/shell_messages.h
@@ -98,6 +98,13 @@ IPC_MESSAGE_ROUTED2(ShellViewHostMsg_LoadURLForFrame,
IPC_MESSAGE_ROUTED0(ShellViewHostMsg_ClearAllDatabases)
IPC_MESSAGE_ROUTED1(ShellViewHostMsg_SetDatabaseQuota,
int /* quota */)
+IPC_SYNC_MESSAGE_ROUTED1_1(ShellViewHostMsg_CheckWebNotificationPermission,
Peter Beverloo 2014/07/15 16:28:26 Note that this IPC will go away when the Notificat
+ GURL /* origin */,
+ int /* result */)
+IPC_MESSAGE_ROUTED2(ShellViewHostMsg_GrantWebNotificationPermission,
+ GURL /* origin */,
+ bool /* permission_granted */)
+IPC_MESSAGE_ROUTED0(ShellViewHostMsg_ClearWebNotificationPermissions)
IPC_MESSAGE_ROUTED1(ShellViewHostMsg_AcceptAllCookies,
bool /* accept */)
IPC_MESSAGE_ROUTED0(ShellViewHostMsg_DeleteAllCookies)

Powered by Google App Engine
This is Rietveld 408576698