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

Unified Diff: components/html_viewer/web_notification_manager_impl.cc

Issue 1229783005: Remove 'blink::WebSerializedOrigin' (4/5) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
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
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..f160a6bc964f5e7c1a9f36758d869a54e5f19dad 100644
--- a/components/html_viewer/web_notification_manager_impl.cc
+++ b/components/html_viewer/web_notification_manager_impl.cc
@@ -12,14 +12,14 @@ WebNotificationManagerImpl::WebNotificationManagerImpl() {}
WebNotificationManagerImpl::~WebNotificationManagerImpl() {}
-void WebNotificationManagerImpl::show(const blink::WebSerializedOrigin&,
+void WebNotificationManagerImpl::show(const blink::WebSecurityOrigin&,
const blink::WebNotificationData&,
blink::WebNotificationDelegate*) {
NOTIMPLEMENTED();
}
void WebNotificationManagerImpl::showPersistent(
- const blink::WebSerializedOrigin&,
+ const blink::WebSecurityOrigin&,
const blink::WebNotificationData&,
blink::WebServiceWorkerRegistration*,
blink::WebNotificationShowCallbacks*) {
@@ -38,13 +38,13 @@ void WebNotificationManagerImpl::close(blink::WebNotificationDelegate*) {
}
void WebNotificationManagerImpl::closePersistent(
- const blink::WebSerializedOrigin&,
+ const blink::WebSecurityOrigin&,
int64_t persistentNotificationId) {
NOTIMPLEMENTED();
}
void WebNotificationManagerImpl::closePersistent(
- const blink::WebSerializedOrigin&,
+ const blink::WebSecurityOrigin&,
const blink::WebString& persistentNotificationId) {
NOTIMPLEMENTED();
}
@@ -55,7 +55,7 @@ void WebNotificationManagerImpl::notifyDelegateDestroyed(
}
blink::WebNotificationPermission WebNotificationManagerImpl::checkPermission(
- const blink::WebSerializedOrigin&) {
+ const blink::WebSecurityOrigin&) {
NOTIMPLEMENTED();
return blink::WebNotificationPermission();
}

Powered by Google App Engine
This is Rietveld 408576698