| Index: content/shell/browser/shell_message_filter.h
|
| diff --git a/content/shell/browser/shell_message_filter.h b/content/shell/browser/shell_message_filter.h
|
| index 6b0024cac434261e680323dfa37ea707f44fe615..e3cc5757223285f9081732063c2e47894b3d76a2 100644
|
| --- a/content/shell/browser/shell_message_filter.h
|
| +++ b/content/shell/browser/shell_message_filter.h
|
| @@ -12,6 +12,8 @@
|
| #include "base/files/file_path.h"
|
| #include "content/public/browser/browser_message_filter.h"
|
|
|
| +class GURL;
|
| +
|
| namespace net {
|
| class URLRequestContextGetter;
|
| }
|
| @@ -48,6 +50,10 @@ class ShellMessageFilter : public BrowserMessageFilter {
|
| std::string* filesystem_id);
|
| void OnClearAllDatabases();
|
| void OnSetDatabaseQuota(int quota);
|
| + void OnCheckWebNotificationPermission(const GURL& origin, int* result);
|
| + void OnGrantWebNotificationPermission(const GURL& origin,
|
| + bool permission_granted);
|
| + void OnClearWebNotificationPermissions();
|
| void OnAcceptAllCookies(bool accept);
|
| void OnDeleteAllCookies();
|
|
|
|
|