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

Side by Side Diff: content/shell/browser/shell_notification_manager.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: another rebase Created 6 years, 4 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CONTENT_SHELL_BROWSER_SHELL_NOTIFICATION_MANAGER_H_
6 #define CONTENT_SHELL_BROWSER_SHELL_NOTIFICATION_MANAGER_H_
7
8 #include <map>
9
10 #include "base/callback.h"
11 #include "third_party/WebKit/public/platform/WebNotificationPermission.h"
12 #include "url/gurl.h"
13
14 namespace content {
15
16 // Responsible for tracking active notifications and allowed origins for the
17 // Web Notification API when running layout tests. The methods in this class
18 // should only be used on the IO thread.
19 class ShellNotificationManager {
20 public:
21 ShellNotificationManager();
22 ~ShellNotificationManager();
23
24 // Checks whether |origin| has permission to display notifications in tests.
25 blink::WebNotificationPermission CheckPermission(
26 const GURL& origin);
27
28 // Requests permission for |origin| to display notifications in layout tests.
29 void RequestPermission(
30 const GURL& origin,
31 const base::Callback<void(blink::WebNotificationPermission)>& callback);
32
33 // Sets the permission to display notifications for |origin| to |permission|.
34 void SetPermission(const GURL& origin,
35 blink::WebNotificationPermission permission);
36
37 // Clears the currently granted permissions.
38 void ClearPermissions();
39
40 private:
41 typedef std::map<GURL, blink::WebNotificationPermission>
42 NotificationPermissionMap;
43 NotificationPermissionMap permission_map_;
44
45 DISALLOW_COPY_AND_ASSIGN(ShellNotificationManager);
46 };
47
48 } // content
49
50 #endif // CONTENT_SHELL_BROWSER_SHELL_NOTIFICATION_MANAGER_H_
OLDNEW
« no previous file with comments | « content/shell/browser/shell_message_filter.cc ('k') | content/shell/browser/shell_notification_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698