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

Side by Side Diff: content/shell/browser/shell_notification_manager.cc

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 #include "content/shell/browser/shell_notification_manager.h"
6
7 namespace content {
8
9 ShellNotificationManager::ShellNotificationManager() {}
10
11 ShellNotificationManager::~ShellNotificationManager() {}
12
13 blink::WebNotificationPermission
14 ShellNotificationManager::CheckPermission(const GURL& origin) {
15 NotificationPermissionMap::iterator iter =
16 permission_map_.find(origin);
17 if (iter == permission_map_.end())
18 return blink::WebNotificationPermissionDefault;
19
20 return iter->second;
21 }
22
23 void ShellNotificationManager::RequestPermission(
24 const GURL& origin,
25 const base::Callback<void(blink::WebNotificationPermission)>& callback) {
26 callback.Run(CheckPermission(origin));
27 }
28
29 void ShellNotificationManager::SetPermission(
30 const GURL& origin,
31 blink::WebNotificationPermission permission) {
32 permission_map_[origin] = permission;
33 }
34
35 void ShellNotificationManager::ClearPermissions() {
36 permission_map_.clear();
37 }
38
39 } // namespace content
OLDNEW
« no previous file with comments | « content/shell/browser/shell_notification_manager.h ('k') | content/shell/common/shell_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698