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(); |
} |