Rubber-stamped by Alp Toker.
Remove unused m_firstData member from FrameLoaderClientGtk.
* WebCoreSupport/FrameLoaderClientGtk.cpp:
* WebCoreSupport/FrameLoaderClientGtk.h:
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@27437
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2007-11-05 Mark Rowe <mrowe@apple.com>
+
+ Rubber-stamped by Alp Toker.
+
+ Remove unused m_firstData member from FrameLoaderClientGtk.
+
+ * WebCoreSupport/FrameLoaderClientGtk.cpp:
+ * WebCoreSupport/FrameLoaderClientGtk.h:
+
2007-11-05 Mark Rowe <mrowe@apple.com>
Reviewed by Alp Toker.
FrameLoaderClient::FrameLoaderClient(WebKitFrame* frame)
: m_frame(frame)
- , m_firstData(false)
{
ASSERT(m_frame);
}
void FrameLoaderClient::dispatchDidReceiveResponse(DocumentLoader*, unsigned long, const ResourceResponse& response)
{
m_response = response;
- m_firstData = true;
}
void FrameLoaderClient::dispatchDecidePolicyForMIMEType(FramePolicyFunction policyFunction, const String&, const ResourceRequest&)
private:
WebKitFrame* m_frame;
WebCore::ResourceResponse m_response;
- bool m_firstData;
};
}