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

Unified Diff: Source/core/css/SelectorChecker.cpp

Issue 423953003: Oilpan: Replace Node* pointers with Member<Node>s (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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/css/SelectorChecker.h ('k') | Source/core/css/TreeBoundaryCrossingRules.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/SelectorChecker.cpp
diff --git a/Source/core/css/SelectorChecker.cpp b/Source/core/css/SelectorChecker.cpp
index 4ab0cf1615c59d4c0a71cf53cb7624bec8292016..c72ced2d974f11f2872da95fccd1f0ed376bf989 100644
--- a/Source/core/css/SelectorChecker.cpp
+++ b/Source/core/css/SelectorChecker.cpp
@@ -934,7 +934,7 @@ bool SelectorChecker::checkOne(const SelectorCheckingContext& context, const Sib
break;
}
hostContext.contextFlags = DefaultBehavior;
- hostContext.scope = 0;
+ hostContext.scope = nullptr;
if (selector.pseudoType() == CSSSelector::PseudoHost)
break;
« no previous file with comments | « Source/core/css/SelectorChecker.h ('k') | Source/core/css/TreeBoundaryCrossingRules.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698