summaryrefslogtreecommitdiffstats
path: root/Source/WebKit2/Shared/qt/QtNetworkReplyData.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebKit2/Shared/qt/QtNetworkReplyData.cpp')
-rw-r--r--Source/WebKit2/Shared/qt/QtNetworkReplyData.cpp8
1 files changed, 3 insertions, 5 deletions
diff --git a/Source/WebKit2/Shared/qt/QtNetworkReplyData.cpp b/Source/WebKit2/Shared/qt/QtNetworkReplyData.cpp
index b835af2b2..22a9b7d44 100644
--- a/Source/WebKit2/Shared/qt/QtNetworkReplyData.cpp
+++ b/Source/WebKit2/Shared/qt/QtNetworkReplyData.cpp
@@ -27,8 +27,8 @@
#include "QtNetworkReplyData.h"
#include "ArgumentCodersQt.h"
-#include "URL.h"
#include "SharedMemory.h"
+#include "URL.h"
#include "WebCoreArgumentCoders.h"
#include <QNetworkAccessManager>
#include <QNetworkRequest>
@@ -41,7 +41,7 @@ QtNetworkReplyData::QtNetworkReplyData()
: m_contentLength(0)
{ }
-void QtNetworkReplyData::encode(CoreIPC::ArgumentEncoder& encoder) const
+void QtNetworkReplyData::encode(IPC::ArgumentEncoder& encoder) const
{
encoder << m_urlString;
encoder << m_contentType;
@@ -50,7 +50,7 @@ void QtNetworkReplyData::encode(CoreIPC::ArgumentEncoder& encoder) const
encoder << m_dataHandle;
}
-bool QtNetworkReplyData::decode(CoreIPC::ArgumentDecoder& decoder, QtNetworkReplyData& destination)
+bool QtNetworkReplyData::decode(IPC::ArgumentDecoder& decoder, QtNetworkReplyData& destination)
{
if (!decoder.decode(destination.m_urlString))
return false;
@@ -66,5 +66,3 @@ bool QtNetworkReplyData::decode(CoreIPC::ArgumentDecoder& decoder, QtNetworkRepl
}
} // namespace WebKit
-
-