summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/core/xml/xpath_value.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/blink/renderer/core/xml/xpath_value.h')
-rw-r--r--chromium/third_party/blink/renderer/core/xml/xpath_value.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/chromium/third_party/blink/renderer/core/xml/xpath_value.h b/chromium/third_party/blink/renderer/core/xml/xpath_value.h
index a416d3ca875..b10c629adce 100644
--- a/chromium/third_party/blink/renderer/core/xml/xpath_value.h
+++ b/chromium/third_party/blink/renderer/core/xml/xpath_value.h
@@ -46,7 +46,7 @@ class ValueData final : public GarbageCollected<ValueData> {
explicit ValueData(const String& string)
: string_(string), node_set_(NodeSet::Create()) {}
- void Trace(blink::Visitor*);
+ void Trace(Visitor*);
NodeSet& GetNodeSet() { return *node_set_; }
String string_;
@@ -89,7 +89,7 @@ class CORE_EXPORT Value {
data_(MakeGarbageCollected<ValueData>()) {
data_->GetNodeSet().Append(value);
}
- void Trace(blink::Visitor*);
+ void Trace(Visitor*);
// This is needed to safely implement constructing from bool - with normal
// function overloading, any pointer type would match.
@@ -112,7 +112,7 @@ class CORE_EXPORT Value {
bool IsString() const { return type_ == kStringValue; }
// If this is called during XPathExpression::evaluate(), EvaluationContext
- // should be passed.
+ // should be passed to record type conversion error.
const NodeSet& ToNodeSet(EvaluationContext*) const;
NodeSet& ModifiableNodeSet(EvaluationContext&);
bool ToBoolean() const;