| 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();
|
|
|