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

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

Issue 108543003: Consistently use AtomicString for namespaceURI / prefix (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years 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: Source/core/xml/NativeXPathNSResolver.h
diff --git a/Source/core/xml/NativeXPathNSResolver.h b/Source/core/xml/NativeXPathNSResolver.h
index 17a1238ba10d79d700940e1abd5ded5c40c1675a..79523100b4d205c94af6603a1331cd941e38651d 100644
--- a/Source/core/xml/NativeXPathNSResolver.h
+++ b/Source/core/xml/NativeXPathNSResolver.h
@@ -38,7 +38,7 @@ public:
static PassRefPtr<NativeXPathNSResolver> create(PassRefPtr<Node> node) { return adoptRef(new NativeXPathNSResolver(node)); }
virtual ~NativeXPathNSResolver();
- virtual String lookupNamespaceURI(const String& prefix);
+ virtual AtomicString lookupNamespaceURI(const String& prefix) OVERRIDE;
private:
explicit NativeXPathNSResolver(PassRefPtr<Node>);

Powered by Google App Engine
This is Rietveld 408576698