Index: Source/web/NotificationPresenterImpl.cpp |
diff --git a/Source/web/NotificationPresenterImpl.cpp b/Source/web/NotificationPresenterImpl.cpp |
index ae8361577162e587efc8978ac17a861f44536848..63ea0098a99ecfb91f709e6bbe73e5565a5a3fa3 100644 |
--- a/Source/web/NotificationPresenterImpl.cpp |
+++ b/Source/web/NotificationPresenterImpl.cpp |
@@ -79,20 +79,20 @@ bool NotificationPresenterImpl::isInitialized() |
bool NotificationPresenterImpl::show(Notification* notification) |
{ |
- return m_presenter->show(RawPtr<Notification>(notification)); |
+ return m_presenter->show(notification); |
} |
void NotificationPresenterImpl::close(Notification* notification) |
{ |
- m_presenter->close(RawPtr<Notification>(notification)); |
+ m_presenter->close(notification); |
// FIXME: Remove the duplicated call to cancel() when Chromium updated to override close() instead. |
- m_presenter->cancel(RawPtr<Notification>(notification)); |
+ m_presenter->cancel(notification); |
} |
void NotificationPresenterImpl::notificationObjectDestroyed(Notification* notification) |
{ |
- m_presenter->objectDestroyed(RawPtr<Notification>(notification)); |
+ m_presenter->objectDestroyed(notification); |
} |
NotificationClient::Permission NotificationPresenterImpl::checkPermission(ExecutionContext* context) |