Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(921)

Unified Diff: Source/core/loader/FrameLoader.cpp

Issue 13973026: remove memoryinstrumentation Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: remove the rest part of MemoryInstrumentation Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/loader/FrameLoader.h ('k') | Source/core/loader/ImageLoader.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/loader/FrameLoader.cpp
diff --git a/Source/core/loader/FrameLoader.cpp b/Source/core/loader/FrameLoader.cpp
index bbe5048c680bfec8bdea9d0b3de571bcc097afcb..f5b18fdbc9e26d71a2a95892a6687edc02b222e4 100644
--- a/Source/core/loader/FrameLoader.cpp
+++ b/Source/core/loader/FrameLoader.cpp
@@ -100,11 +100,9 @@
#include "SerializedScriptValue.h"
#include "Settings.h"
#include "TextResourceDecoder.h"
-#include "WebCoreMemoryInstrumentation.h"
#include "WindowFeatures.h"
#include "XMLDocumentParser.h"
#include <wtf/CurrentTime.h>
-#include <wtf/MemoryInstrumentationHashSet.h>
#include <wtf/StdLibExtras.h>
#include <wtf/text/CString.h>
#include <wtf/text/WTFString.h>
@@ -3120,26 +3118,6 @@ NetworkingContext* FrameLoader::networkingContext() const
return m_networkingContext.get();
}
-void FrameLoader::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const
-{
- MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::Loader);
- info.addMember(m_frame, "frame");
- info.ignoreMember(m_client);
- info.addMember(m_progressTracker, "progressTracker");
- info.addMember(m_documentLoader, "documentLoader");
- info.addMember(m_provisionalDocumentLoader, "provisionalDocumentLoader");
- info.addMember(m_policyDocumentLoader, "policyDocumentLoader");
- info.addMember(m_pendingStateObject, "pendingStateObject");
- info.addMember(m_submittedFormURL, "submittedFormURL");
- info.addMember(m_checkTimer, "checkTimer");
- info.addMember(m_opener, "opener");
- info.addMember(m_openedFrames, "openedFrames");
- info.addMember(m_outgoingReferrer, "outgoingReferrer");
- info.addMember(m_networkingContext, "networkingContext");
- info.addMember(m_previousURL, "previousURL");
- info.addMember(m_requestedHistoryItem, "requestedHistoryItem");
-}
-
Frame* createWindow(Frame* openerFrame, Frame* lookupFrame, const FrameLoadRequest& request, const WindowFeatures& features, bool& created)
{
ASSERT(!features.dialog || request.frameName().isEmpty());
« no previous file with comments | « Source/core/loader/FrameLoader.h ('k') | Source/core/loader/ImageLoader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698