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

Unified 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: 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/browser/shell_notification_manager.cc
diff --git a/content/shell/browser/shell_notification_manager.cc b/content/shell/browser/shell_notification_manager.cc
new file mode 100644
index 0000000000000000000000000000000000000000..85c1d2b9908738057048fd5823ac3de1081be04e
--- /dev/null
+++ b/content/shell/browser/shell_notification_manager.cc
@@ -0,0 +1,39 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "content/shell/browser/shell_notification_manager.h"
+
+namespace content {
+
+ShellNotificationManager::ShellNotificationManager() {}
+
+ShellNotificationManager::~ShellNotificationManager() {}
+
+blink::WebNotificationPresenter::Permission
+ShellNotificationManager::CheckPermission(const GURL& origin) {
+ NotificationPermissionMap::iterator iter =
+ permission_map_.find(origin);
+ if (iter == permission_map_.end())
+ return blink::WebNotificationPresenter::PermissionNotAllowed;
+
+ return iter->second;
+}
+
+void ShellNotificationManager::RequestPermission(
+ const GURL& origin, const base::Closure& callback) {
+ // TODO(peter): The request's result should be passed to |callback|.
jochen (gone - plz use gerrit) 2014/07/17 09:29:45 should be easy to implement, no?
Peter Beverloo 2014/07/17 12:22:52 It requires changing the chrome/ implementation of
+ callback.Run();
+}
+
+void ShellNotificationManager::SetPermission(
+ const GURL& origin,
+ blink::WebNotificationPresenter::Permission permission) {
+ permission_map_[origin] = permission;
+}
+
+void ShellNotificationManager::ClearPermissions() {
+ permission_map_.clear();
+}
+
+} // namespace content

Powered by Google App Engine
This is Rietveld 408576698