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

Unified Diff: Source/core/inspector/InspectorResourceContentLoader.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
Index: Source/core/inspector/InspectorResourceContentLoader.cpp
diff --git a/Source/core/inspector/InspectorResourceContentLoader.cpp b/Source/core/inspector/InspectorResourceContentLoader.cpp
index 4f2fa5da8afb144d1d86e2fd66dcb2670125aedd..23067727b03e9ed8fccfe217023bf48539c83260 100644
--- a/Source/core/inspector/InspectorResourceContentLoader.cpp
+++ b/Source/core/inspector/InspectorResourceContentLoader.cpp
@@ -117,7 +117,7 @@ void InspectorResourceContentLoader::start()
}
}
- WillBeHeapVector<RawPtrWillBeMember<CSSStyleSheet> > styleSheets;
+ WillBeHeapVector<RawPtrWillBeMember<CSSStyleSheet>> styleSheets;
InspectorCSSAgent::collectAllDocumentStyleSheets(document, styleSheets);
for (CSSStyleSheet* styleSheet : styleSheets) {
if (styleSheet->isInline() || !styleSheet->contents()->loadCompleted())
@@ -187,7 +187,7 @@ void InspectorResourceContentLoader::checkDone()
{
if (!hasFinished())
return;
- PersistentHeapVectorWillBeHeapVector<Member<VoidCallback> > callbacks;
+ PersistentHeapVectorWillBeHeapVector<Member<VoidCallback>> callbacks;
callbacks.swap(m_callbacks);
for (const auto& callback : callbacks)
callback->handleEvent();
« no previous file with comments | « Source/core/inspector/InspectorResourceContentLoader.h ('k') | Source/core/inspector/InspectorRuntimeAgent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698