diff options
author | Simon Hausmann <simon.hausmann@nokia.com> | 2012-08-22 13:36:28 +0200 |
---|---|---|
committer | Simon Hausmann <simon.hausmann@nokia.com> | 2012-08-22 13:36:28 +0200 |
commit | c311cf639cc1d6570d67b0a80a8ba04dc992a658 (patch) | |
tree | 6e16fefc7ece11ce4ec1e475a58a537a7acebaf8 /Source/WebCore/loader/SubstituteData.cpp | |
parent | 5ef7c8a6a70875d4430752d146bdcb069605d71d (diff) | |
download | qtwebkit-c311cf639cc1d6570d67b0a80a8ba04dc992a658.tar.gz |
Imported WebKit commit 35255d8c2fd37ba4359e75fe0ebe6aec87687f9c (http://svn.webkit.org/repository/webkit/trunk@126284)
New snapshot that includes MSVC 64-bit build fix
Diffstat (limited to 'Source/WebCore/loader/SubstituteData.cpp')
-rw-r--r-- | Source/WebCore/loader/SubstituteData.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/WebCore/loader/SubstituteData.cpp b/Source/WebCore/loader/SubstituteData.cpp index 806bd1d8e..a269c3498 100644 --- a/Source/WebCore/loader/SubstituteData.cpp +++ b/Source/WebCore/loader/SubstituteData.cpp @@ -39,10 +39,10 @@ void SubstituteData::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const { MemoryClassInfo info(memoryObjectInfo, this, MemoryInstrumentation::Loader); info.addInstrumentedMember(m_content); - info.addMember(m_mimeType); - info.addMember(m_textEncoding); - info.addMember(m_failingURL); - info.addMember(m_responseURL); + info.addInstrumentedMember(m_mimeType); + info.addInstrumentedMember(m_textEncoding); + info.addInstrumentedMember(m_failingURL); + info.addInstrumentedMember(m_responseURL); } } |