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

Unified Diff: Source/WebKit/chromium/src/WebDevToolsAgentImpl.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 | « LayoutTests/inspector/profiler/memory-instrumentation-test.js ('k') | Source/bindings/v8/DOMDataStore.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/WebKit/chromium/src/WebDevToolsAgentImpl.cpp
diff --git a/Source/WebKit/chromium/src/WebDevToolsAgentImpl.cpp b/Source/WebKit/chromium/src/WebDevToolsAgentImpl.cpp
index 6b45fdaa61f06927d2d977bfb71ffe4829285825..1c5bd56842acbc73f0b3ebadeb97886df13db047 100644
--- a/Source/WebKit/chromium/src/WebDevToolsAgentImpl.cpp
+++ b/Source/WebKit/chromium/src/WebDevToolsAgentImpl.cpp
@@ -649,7 +649,7 @@ void WebDevToolsAgentImpl::paintPageOverlay(WebCanvas* canvas)
WebVector<WebMemoryUsageInfo> WebDevToolsAgentImpl::processMemoryDistribution() const
{
- HashMap<String, size_t> memoryInfo = m_webViewImpl->page()->inspectorController()->processMemoryDistribution();
+ HashMap<String, size_t> memoryInfo; // = m_webViewImpl->page()->inspectorController()->processMemoryDistribution();
WebVector<WebMemoryUsageInfo> memoryInfoVector((size_t)memoryInfo.size());
size_t i = 0;
for (HashMap<String, size_t>::const_iterator it = memoryInfo.begin(); it != memoryInfo.end(); ++it)
« no previous file with comments | « LayoutTests/inspector/profiler/memory-instrumentation-test.js ('k') | Source/bindings/v8/DOMDataStore.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698