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

Unified Diff: Source/core/css/SelectorFilter.h

Issue 22887044: [oilpan] Make the oilpan branch build on Mac. (Closed) Base URL: svn://svn.chromium.org/blink/branches/oilpan
Patch Set: Add FIXME. Created 7 years, 4 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/Pair.h ('k') | Source/core/css/StyleResolver.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/SelectorFilter.h
diff --git a/Source/core/css/SelectorFilter.h b/Source/core/css/SelectorFilter.h
index ca9e6f00a6c5f1def98acfb71364d6fc5cffab7c..7619ebeb6f475f1e0e8bdc6c77de18021df8ecd0 100644
--- a/Source/core/css/SelectorFilter.h
+++ b/Source/core/css/SelectorFilter.h
@@ -54,8 +54,7 @@ public:
private:
struct ParentStackFrame {
- ParentStackFrame() : element(0) { }
- ParentStackFrame(const Handle<Element>& element) : element(element) { }
+ explicit ParentStackFrame(const Handle<Element>& element) : element(element) { }
Persistent<Element> element;
Vector<unsigned, 4> identifierHashes;
};
« no previous file with comments | « Source/core/css/Pair.h ('k') | Source/core/css/StyleResolver.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698