| Index: Source/core/inspector/InspectorCSSAgent.cpp
|
| diff --git a/Source/core/inspector/InspectorCSSAgent.cpp b/Source/core/inspector/InspectorCSSAgent.cpp
|
| index 6ad444dae3d95d8a5fc4ba1e105afb3773a1ff9b..333db0b18b2bdca003d93135f860adac9219a9f7 100644
|
| --- a/Source/core/inspector/InspectorCSSAgent.cpp
|
| +++ b/Source/core/inspector/InspectorCSSAgent.cpp
|
| @@ -1122,7 +1122,7 @@ void InspectorCSSAgent::collectAllDocumentStyleSheets(Document* document, Vector
|
| {
|
| const WillBeHeapVector<RefPtrWillBeMember<StyleSheet> > activeStyleSheets = document->styleEngine()->activeStyleSheetsForInspector();
|
| for (WillBeHeapVector<RefPtrWillBeMember<StyleSheet> >::const_iterator it = activeStyleSheets.begin(); it != activeStyleSheets.end(); ++it) {
|
| - StyleSheet* styleSheet = (*it).get();
|
| + StyleSheet* styleSheet = it->get();
|
| if (styleSheet->isCSSStyleSheet())
|
| collectStyleSheets(toCSSStyleSheet(styleSheet), result);
|
| }
|
|
|