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

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

Issue 15660004: Reporing invalid CSS selectors. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 7 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/InspectorInstrumentation.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/inspector/InspectorInstrumentation.cpp
diff --git a/Source/core/inspector/InspectorInstrumentation.cpp b/Source/core/inspector/InspectorInstrumentation.cpp
index 75a0b19d5782c9c99d9433b3e4c6fdbc838ec225..c79bf05512602bf1ec6e211937cc04ed0d6f4a50 100644
--- a/Source/core/inspector/InspectorInstrumentation.cpp
+++ b/Source/core/inspector/InspectorInstrumentation.cpp
@@ -1215,9 +1215,9 @@ void pseudoElementDestroyedImpl(InstrumentingAgents* instrumentingAgents, Pseudo
layerTreeAgent->pseudoElementDestroyed(pseudoElement);
}
-bool cssErrorFilter(const CSSParserLocation& location, int propertyId, int errorType)
+bool cssErrorFilter(const CSSParserString& content, int propertyId, int errorType)
{
- return InspectorCSSAgent::cssErrorFilter(location, propertyId, errorType);
+ return InspectorCSSAgent::cssErrorFilter(content, propertyId, errorType);
}
} // namespace InspectorInstrumentation
« no previous file with comments | « Source/core/inspector/InspectorInstrumentation.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698