summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/notifications
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/notifications')
-rw-r--r--Source/WebCore/notifications/Notification.cpp4
-rw-r--r--Source/WebCore/notifications/Notification.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/Source/WebCore/notifications/Notification.cpp b/Source/WebCore/notifications/Notification.cpp
index 2facd1b..0192b05 100644
--- a/Source/WebCore/notifications/Notification.cpp
+++ b/Source/WebCore/notifications/Notification.cpp
@@ -190,9 +190,9 @@ void Notification::didReceiveResponse(const ResourceResponse& response)
m_iconData = SharedBuffer::create();
}
-void Notification::didReceiveData(const char* data, int lengthReceived)
+void Notification::didReceiveData(const char* data, int dataLength)
{
- m_iconData->append(data, lengthReceived);
+ m_iconData->append(data, dataLength);
}
void Notification::didFinishLoading(unsigned long, double)
diff --git a/Source/WebCore/notifications/Notification.h b/Source/WebCore/notifications/Notification.h
index b5c6b9a..d05a3bd 100644
--- a/Source/WebCore/notifications/Notification.h
+++ b/Source/WebCore/notifications/Notification.h
@@ -105,7 +105,7 @@ namespace WebCore {
void detachPresenter() { }
virtual void didReceiveResponse(const ResourceResponse&);
- virtual void didReceiveData(const char* data, int lengthReceived);
+ virtual void didReceiveData(const char* data, int dataLength);
virtual void didFinishLoading(unsigned long identifier, double finishTime);
virtual void didFail(const ResourceError&);
virtual void didFailRedirectCheck();