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

Unified Diff: Source/core/inspector/InspectorHeapProfilerAgent.cpp

Issue 884753003: Fix template angle bracket syntax in inspector (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Some more fixes Created 5 years, 11 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/InspectorDebuggerAgent.cpp ('k') | Source/core/inspector/InspectorHistory.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/inspector/InspectorHeapProfilerAgent.cpp
diff --git a/Source/core/inspector/InspectorHeapProfilerAgent.cpp b/Source/core/inspector/InspectorHeapProfilerAgent.cpp
index 13b31f39288d5d0e47f6650d168129384290cca3..97dd79b2c15cf2431aae195c42ccb3b8dc3a45a8 100644
--- a/Source/core/inspector/InspectorHeapProfilerAgent.cpp
+++ b/Source/core/inspector/InspectorHeapProfilerAgent.cpp
@@ -170,7 +170,7 @@ void InspectorHeapProfilerAgent::pushHeapStatsUpdate(const uint32_t* const data,
{
if (!m_frontend)
return;
- RefPtr<TypeBuilder::Array<int> > statsDiff = TypeBuilder::Array<int>::create();
+ RefPtr<TypeBuilder::Array<int>> statsDiff = TypeBuilder::Array<int>::create();
for (int i = 0; i < size; ++i)
statsDiff->addItem(data[i]);
m_frontend->heapStatsUpdate(statsDiff.release());
« no previous file with comments | « Source/core/inspector/InspectorDebuggerAgent.cpp ('k') | Source/core/inspector/InspectorHistory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698