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

Unified Diff: content/shell/browser/shell_notification_manager.cc

Issue 639293005: Content Shell: Introduce LayoutTestContentBrowserClient (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: comment Created 6 years, 2 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
« no previous file with comments | « content/shell/browser/shell_notification_manager.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
deleted file mode 100644
index 134f8bac11e38e396a26817fbf803c3f70bdceed..0000000000000000000000000000000000000000
--- a/content/shell/browser/shell_notification_manager.cc
+++ /dev/null
@@ -1,39 +0,0 @@
-// 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::WebNotificationPermission
-ShellNotificationManager::CheckPermission(const GURL& origin) {
- NotificationPermissionMap::iterator iter =
- permission_map_.find(origin);
- if (iter == permission_map_.end())
- return blink::WebNotificationPermissionDefault;
-
- return iter->second;
-}
-
-void ShellNotificationManager::RequestPermission(
- const GURL& origin,
- const base::Callback<void(blink::WebNotificationPermission)>& callback) {
- callback.Run(CheckPermission(origin));
-}
-
-void ShellNotificationManager::SetPermission(
- const GURL& origin,
- blink::WebNotificationPermission permission) {
- permission_map_[origin] = permission;
-}
-
-void ShellNotificationManager::ClearPermissions() {
- permission_map_.clear();
-}
-
-} // namespace content
« no previous file with comments | « content/shell/browser/shell_notification_manager.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698