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

Unified Diff: chrome/browser/notifications/notifications_prefs_cache.cc

Issue 271052: Browser side support (sans UI) for desktop notifications.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 11 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 | « chrome/browser/notifications/notifications_prefs_cache.h ('k') | chrome/browser/profile.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/notifications/notifications_prefs_cache.cc
===================================================================
--- chrome/browser/notifications/notifications_prefs_cache.cc (revision 0)
+++ chrome/browser/notifications/notifications_prefs_cache.cc (revision 0)
@@ -0,0 +1,67 @@
+// Copyright (c) 2009 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 "chrome/browser/notifications/notifications_prefs_cache.h"
+
+#include "base/string_util.h"
+#include "base/utf_string_conversions.h"
+#include "chrome/browser/chrome_thread.h"
+#include "chrome/common/pref_service.h"
+#include "webkit/api/public/WebNotificationPresenter.h"
+
+NotificationsPrefsCache::NotificationsPrefsCache(
+ ListValue* allowed, ListValue* denied) {
+ ListValue::const_iterator i;
+ std::wstring origin;
+ if (allowed) {
+ for (i = allowed->begin(); i != allowed->end(); ++i) {
+ (*i)->GetAsString(&origin);
+ allowed_origins_.insert(GURL(WideToUTF8(origin)));
+ }
+ }
+ if (denied) {
+ for (i = denied->begin(); i != denied->end(); ++i) {
+ (*i)->GetAsString(&origin);
+ denied_origins_.insert(GURL(WideToUTF8(origin)));
+ }
+ }
+}
+
+void NotificationsPrefsCache::CacheAllowedOrigin(
+ const GURL& origin) {
+ DCHECK(ChromeThread::CurrentlyOn(ChromeThread::IO));
+ std::set<GURL>::iterator iter;
+ allowed_origins_.insert(origin);
+ if ((iter = denied_origins_.find(origin)) != denied_origins_.end())
+ denied_origins_.erase(iter);
+}
+
+void NotificationsPrefsCache::CacheDeniedOrigin(
+ const GURL& origin) {
+ DCHECK(ChromeThread::CurrentlyOn(ChromeThread::IO));
+ std::set<GURL>::iterator iter;
+ denied_origins_.insert(origin);
+ if ((iter = allowed_origins_.find(origin)) != allowed_origins_.end())
+ allowed_origins_.erase(iter);
+}
+
+int NotificationsPrefsCache::HasPermission(const GURL& origin) {
+ if (IsOriginAllowed(origin))
+ return WebKit::WebNotificationPresenter::PermissionAllowed;
+ if (IsOriginDenied(origin))
+ return WebKit::WebNotificationPresenter::PermissionDenied;
+ return WebKit::WebNotificationPresenter::PermissionNotAllowed;
+}
+
+bool NotificationsPrefsCache::IsOriginAllowed(
+ const GURL& origin) {
+ DCHECK(ChromeThread::CurrentlyOn(ChromeThread::IO));
+ return (allowed_origins_.find(origin) != allowed_origins_.end());
+}
+
+bool NotificationsPrefsCache::IsOriginDenied(
+ const GURL& origin) {
+ DCHECK(ChromeThread::CurrentlyOn(ChromeThread::IO));
+ return (denied_origins_.find(origin) != denied_origins_.end());
+}
Property changes on: chrome/browser/notifications/notifications_prefs_cache.cc
___________________________________________________________________
Added: svn:eol-style
+ LF
« no previous file with comments | « chrome/browser/notifications/notifications_prefs_cache.h ('k') | chrome/browser/profile.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698