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

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

Issue 194108: adds DesktopNotificationService to Profile (Closed)
Patch Set: more feedback 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
Index: chrome/browser/notifications/notifications_prefs_cache.cc
diff --git a/chrome/browser/notifications/notifications_prefs_cache.cc b/chrome/browser/notifications/notifications_prefs_cache.cc
new file mode 100644
index 0000000000000000000000000000000000000000..c5663e4375162e7ace5592005086c12fc08d662e
--- /dev/null
+++ b/chrome/browser/notifications/notifications_prefs_cache.cc
@@ -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());
+}

Powered by Google App Engine
This is Rietveld 408576698