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

Unified Diff: components/html_viewer/web_notification_manager_impl.cc

Issue 1244563002: Remove 'blink::WebSerializedOrigin' (1/4) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: forward Created 5 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
« no previous file with comments | « components/html_viewer/web_notification_manager_impl.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/html_viewer/web_notification_manager_impl.cc
diff --git a/components/html_viewer/web_notification_manager_impl.cc b/components/html_viewer/web_notification_manager_impl.cc
index c597ec24667575a24bb731b15e713745fe3fd72b..2c94a13e6e97b3c40418abe713647bc7f9458da6 100644
--- a/components/html_viewer/web_notification_manager_impl.cc
+++ b/components/html_viewer/web_notification_manager_impl.cc
@@ -12,6 +12,12 @@ WebNotificationManagerImpl::WebNotificationManagerImpl() {}
WebNotificationManagerImpl::~WebNotificationManagerImpl() {}
+void WebNotificationManagerImpl::show(const blink::WebSecurityOrigin&,
+ const blink::WebNotificationData&,
+ blink::WebNotificationDelegate*) {
+ NOTIMPLEMENTED();
+}
+
void WebNotificationManagerImpl::show(const blink::WebSerializedOrigin&,
const blink::WebNotificationData&,
blink::WebNotificationDelegate*) {
@@ -19,6 +25,14 @@ void WebNotificationManagerImpl::show(const blink::WebSerializedOrigin&,
}
void WebNotificationManagerImpl::showPersistent(
+ const blink::WebSecurityOrigin&,
+ const blink::WebNotificationData&,
+ blink::WebServiceWorkerRegistration*,
+ blink::WebNotificationShowCallbacks*) {
+ NOTIMPLEMENTED();
+}
+
+void WebNotificationManagerImpl::showPersistent(
const blink::WebSerializedOrigin&,
const blink::WebNotificationData&,
blink::WebServiceWorkerRegistration*,
@@ -38,12 +52,24 @@ void WebNotificationManagerImpl::close(blink::WebNotificationDelegate*) {
}
void WebNotificationManagerImpl::closePersistent(
+ const blink::WebSecurityOrigin&,
+ int64_t persistentNotificationId) {
+ NOTIMPLEMENTED();
+}
+
+void WebNotificationManagerImpl::closePersistent(
const blink::WebSerializedOrigin&,
int64_t persistentNotificationId) {
NOTIMPLEMENTED();
}
void WebNotificationManagerImpl::closePersistent(
+ const blink::WebSecurityOrigin&,
+ const blink::WebString& persistentNotificationId) {
+ NOTIMPLEMENTED();
+}
+
+void WebNotificationManagerImpl::closePersistent(
const blink::WebSerializedOrigin&,
const blink::WebString& persistentNotificationId) {
NOTIMPLEMENTED();
@@ -55,6 +81,12 @@ void WebNotificationManagerImpl::notifyDelegateDestroyed(
}
blink::WebNotificationPermission WebNotificationManagerImpl::checkPermission(
+ const blink::WebSecurityOrigin&) {
+ NOTIMPLEMENTED();
+ return blink::WebNotificationPermission();
+}
+
+blink::WebNotificationPermission WebNotificationManagerImpl::checkPermission(
const blink::WebSerializedOrigin&) {
NOTIMPLEMENTED();
return blink::WebNotificationPermission();
« no previous file with comments | « components/html_viewer/web_notification_manager_impl.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698