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

Unified Diff: chrome/browser/notifications/web_notification_delegate.h

Issue 2377553003: Add ShouldDisplayOverFullscreen support to web notifications. (Closed)
Patch Set: Final formatting fixes Created 4 years, 3 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/web_notification_delegate.h
diff --git a/chrome/browser/notifications/web_notification_delegate.h b/chrome/browser/notifications/web_notification_delegate.h
new file mode 100644
index 0000000000000000000000000000000000000000..93c46abc281ae0d8e955c9e9c63c1edb1e819569
--- /dev/null
+++ b/chrome/browser/notifications/web_notification_delegate.h
@@ -0,0 +1,49 @@
+// Copyright 2016 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.
+
+#ifndef CHROME_BROWSER_NOTIFICATIONS_WEB_NOTIFICATION_DELEGATE_H_
+#define CHROME_BROWSER_NOTIFICATIONS_WEB_NOTIFICATION_DELEGATE_H_
+
+#include <string>
+
+#include "base/macros.h"
+#include "chrome/browser/notifications/notification_delegate.h"
+#include "url/gurl.h"
+
+namespace content {
+class BrowserContext;
+}
+
+// Base class for the PersistentNotificationDelegate and the
+// NotificationObjectProxy. All common functionality for displaying web
+// notifications is found here.
+// TODO(peter, crbug.com/596161): Migrate this functionality offered by the
+// delegate to the NotificationDisplayService.
+class WebNotificationDelegate : public NotificationDelegate {
+ public:
+ // NotificationDelegate implementation.
+ std::string id() const override;
+ void SettingsClick() override;
+ bool ShouldDisplaySettingsButton() override;
+ bool ShouldDisplayOverFullscreen() const override;
+
+ protected:
+ WebNotificationDelegate(content::BrowserContext* browser_context,
+ const std::string& notification_id,
+ const GURL& origin);
+
+ ~WebNotificationDelegate() override;
+
+ content::BrowserContext* browser_context() { return browser_context_; }
+ const GURL& origin() { return origin_; }
+
+ private:
+ content::BrowserContext* browser_context_;
+ std::string notification_id_;
+ GURL origin_;
+
+ DISALLOW_COPY_AND_ASSIGN(WebNotificationDelegate);
+};
+
+#endif // CHROME_BROWSER_NOTIFICATIONS_WEB_NOTIFICATION_DELEGATE_H_

Powered by Google App Engine
This is Rietveld 408576698