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

Unified Diff: third_party/WebKit/Source/core/css/parser/CSSParserSelector.h

Issue 2778983006: Make /deep/ as no-op and remove ::shadow in dynamic profile (Closed)
Patch Set: rebased Created 3 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
Index: third_party/WebKit/Source/core/css/parser/CSSParserSelector.h
diff --git a/third_party/WebKit/Source/core/css/parser/CSSParserSelector.h b/third_party/WebKit/Source/core/css/parser/CSSParserSelector.h
index bdc612129523d2246b3c984e409c3326369b81fe..48250ca0a49d3600f744fef5fa75e831c04b0dc1 100644
--- a/third_party/WebKit/Source/core/css/parser/CSSParserSelector.h
+++ b/third_party/WebKit/Source/core/css/parser/CSSParserSelector.h
@@ -29,6 +29,8 @@
namespace blink {
+class CSSParserContext;
+
class CORE_EXPORT CSSParserSelector {
WTF_MAKE_NONCOPYABLE(CSSParserSelector);
USING_FAST_MALLOC(CSSParserSelector);
@@ -74,8 +76,9 @@ class CORE_EXPORT CSSParserSelector {
}
void UpdatePseudoType(const AtomicString& value,
+ const CSSParserContext& context,
bool has_arguments = false) const {
- selector_->UpdatePseudoType(value, has_arguments);
+ selector_->UpdatePseudoType(value, context, has_arguments);
}
void AdoptSelectorVector(

Powered by Google App Engine
This is Rietveld 408576698