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

Unified Diff: components/html_viewer/web_notification_manager_impl.cc

Issue 1246943002: Remove 'blink::WebSerializedOrigin' (7/7) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@ugh
Patch Set: 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 2c38252480ef9ee410f188c26e41ef773d28fef0..f160a6bc964f5e7c1a9f36758d869a54e5f19dad 100644
--- a/components/html_viewer/web_notification_manager_impl.cc
+++ b/components/html_viewer/web_notification_manager_impl.cc
@@ -18,12 +18,6 @@ void WebNotificationManagerImpl::show(const blink::WebSecurityOrigin&,
NOTIMPLEMENTED();
}
-void WebNotificationManagerImpl::show(const blink::WebSerializedOrigin&,
- const blink::WebNotificationData&,
- blink::WebNotificationDelegate*) {
- NOTIMPLEMENTED();
-}
-
void WebNotificationManagerImpl::showPersistent(
const blink::WebSecurityOrigin&,
const blink::WebNotificationData&,
@@ -32,14 +26,6 @@ void WebNotificationManagerImpl::showPersistent(
NOTIMPLEMENTED();
}
-void WebNotificationManagerImpl::showPersistent(
- const blink::WebSerializedOrigin&,
- const blink::WebNotificationData&,
- blink::WebServiceWorkerRegistration*,
- blink::WebNotificationShowCallbacks*) {
- NOTIMPLEMENTED();
-}
-
void WebNotificationManagerImpl::getNotifications(
const blink::WebString& filterTag,
blink::WebServiceWorkerRegistration*,
@@ -58,23 +44,11 @@ void WebNotificationManagerImpl::closePersistent(
}
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();
-}
-
void WebNotificationManagerImpl::notifyDelegateDestroyed(
blink::WebNotificationDelegate*) {
NOTIMPLEMENTED();
@@ -86,10 +60,4 @@ blink::WebNotificationPermission WebNotificationManagerImpl::checkPermission(
return blink::WebNotificationPermission();
}
-blink::WebNotificationPermission WebNotificationManagerImpl::checkPermission(
- const blink::WebSerializedOrigin&) {
- NOTIMPLEMENTED();
- return blink::WebNotificationPermission();
-}
-
} // namespace html_viewer
« 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