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

Unified Diff: Source/core/xml/XPathPath.h

Issue 698923002: Enable Oilpan for core/xml/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Non-Oilpan fixes Created 6 years, 1 month 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/xml/XPathParser.cpp ('k') | Source/core/xml/XPathPath.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/xml/XPathPath.h
diff --git a/Source/core/xml/XPathPath.h b/Source/core/xml/XPathPath.h
index d8a3af042d03b249942390996777f54d4ac3dd0e..57ba46ba4500df54530d3c6d34b7ad7adf6fe750 100644
--- a/Source/core/xml/XPathPath.h
+++ b/Source/core/xml/XPathPath.h
@@ -39,7 +39,7 @@ class Step;
class Filter final : public Expression {
public:
- Filter(PassOwnPtrWillBeRawPtr<Expression>, WillBeHeapVector<OwnPtrWillBeMember<Predicate> >&);
+ Filter(Expression*, HeapVector<Member<Predicate> >&);
virtual ~Filter();
virtual void trace(Visitor*) override;
@@ -48,8 +48,8 @@ public:
private:
virtual Value::Type resultType() const override { return Value::NodeSetValue; }
- OwnPtrWillBeMember<Expression> m_expr;
- WillBeHeapVector<OwnPtrWillBeMember<Predicate> > m_predicates;
+ Member<Expression> m_expr;
+ HeapVector<Member<Predicate> > m_predicates;
};
class LocationPath final : public Expression {
@@ -67,7 +67,7 @@ public:
private:
virtual Value::Type resultType() const override { return Value::NodeSetValue; }
- WillBeHeapVector<RawPtrWillBeMember<Step> > m_steps;
+ HeapVector<Member<Step> > m_steps;
bool m_absolute;
};
@@ -82,8 +82,8 @@ public:
private:
virtual Value::Type resultType() const override { return Value::NodeSetValue; }
- OwnPtrWillBeMember<Expression> m_filter;
- OwnPtrWillBeMember<LocationPath> m_path;
+ Member<Expression> m_filter;
+ Member<LocationPath> m_path;
};
}
« no previous file with comments | « Source/core/xml/XPathParser.cpp ('k') | Source/core/xml/XPathPath.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698