| Index: third_party/WebKit/Source/core/inspector/InspectorStyleSheet.cpp
|
| diff --git a/third_party/WebKit/Source/core/inspector/InspectorStyleSheet.cpp b/third_party/WebKit/Source/core/inspector/InspectorStyleSheet.cpp
|
| index 0be66582692a1b57fe0c7afa5f56acd8cc907e17..28ae694be91968ddf4315083f3623988c74164c9 100644
|
| --- a/third_party/WebKit/Source/core/inspector/InspectorStyleSheet.cpp
|
| +++ b/third_party/WebKit/Source/core/inspector/InspectorStyleSheet.cpp
|
| @@ -389,7 +389,7 @@ void StyleSheetHandler::observeComment(unsigned startOffset,
|
| CSSParser::parseDeclarationListForInspector(
|
| parserContextForDocument(m_document), commentText, handler);
|
| Vector<CSSPropertySourceData>& commentPropertyData =
|
| - sourceData.first()->styleSourceData->propertyData;
|
| + sourceData.front()->styleSourceData->propertyData;
|
| if (commentPropertyData.size() != 1)
|
| return;
|
| CSSPropertySourceData& propertyData = commentPropertyData.at(0);
|
| @@ -1990,7 +1990,7 @@ InspectorStyleSheetForInlineStyle::ruleSourceData() {
|
| &ruleSourceDataResult);
|
| CSSParser::parseDeclarationListForInspector(
|
| parserContextForDocument(&m_element->document()), text, handler);
|
| - ruleSourceData = ruleSourceDataResult.first().release();
|
| + ruleSourceData = ruleSourceDataResult.front().release();
|
| }
|
| return ruleSourceData.release();
|
| }
|
|
|