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

Unified Diff: Source/core/inspector/InspectorOverlay.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/inspector/InspectorOverlay.h ('k') | Source/core/inspector/InspectorProfilerAgent.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/inspector/InspectorOverlay.cpp
diff --git a/Source/core/inspector/InspectorOverlay.cpp b/Source/core/inspector/InspectorOverlay.cpp
index 0a1a85b84d0f394eba7b231715a338658f94cfe4..3653894afd542a204fd614b16437c478b5f2c3c0 100644
--- a/Source/core/inspector/InspectorOverlay.cpp
+++ b/Source/core/inspector/InspectorOverlay.cpp
@@ -48,7 +48,6 @@
#include "ScriptValue.h"
#include "Settings.h"
#include "StyledElement.h"
-#include "WebCoreMemoryInstrumentation.h"
#include <wtf/text/StringBuilder.h>
namespace WebCore {
@@ -489,20 +488,6 @@ void InspectorOverlay::evaluateInOverlay(const String& method, PassRefPtr<Inspec
overlayPage()->mainFrame()->script()->evaluate(ScriptSourceCode(makeString("dispatch(", command->toJSONString(), ")")));
}
-void InspectorOverlay::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const
-{
- MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::InspectorOverlay);
- info.addMember(m_page, "page");
- info.addWeakPointer(m_client);
- info.addMember(m_pausedInDebuggerMessage, "pausedInDebuggerMessage");
- info.addMember(m_highlightNode, "highlightNode");
- info.addMember(m_nodeHighlightConfig, "nodeHighlightConfig");
- info.addMember(m_highlightQuad, "highlightQuad");
- info.addMember(m_overlayPage, "overlayPage");
- info.addMember(m_quadHighlightConfig, "quadHighlightConfig");
- info.addMember(m_size, "size");
-}
-
void InspectorOverlay::freePage()
{
m_overlayPage.clear();
« no previous file with comments | « Source/core/inspector/InspectorOverlay.h ('k') | Source/core/inspector/InspectorProfilerAgent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698