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

Side by Side Diff: third_party/WebKit/Source/core/xml/NativeXPathNSResolver.cpp

Issue 1854543002: Oilpan: Remove WillBe types (part 7) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2007 Alexey Proskuryakov (ap@nypop.com) 2 * Copyright (C) 2007 Alexey Proskuryakov (ap@nypop.com)
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 13 matching lines...) Expand all
24 */ 24 */
25 25
26 #include "core/xml/NativeXPathNSResolver.h" 26 #include "core/xml/NativeXPathNSResolver.h"
27 27
28 #include "core/XMLNames.h" 28 #include "core/XMLNames.h"
29 #include "core/dom/Node.h" 29 #include "core/dom/Node.h"
30 #include "wtf/text/WTFString.h" 30 #include "wtf/text/WTFString.h"
31 31
32 namespace blink { 32 namespace blink {
33 33
34 NativeXPathNSResolver::NativeXPathNSResolver(PassRefPtrWillBeRawPtr<Node> node) 34 NativeXPathNSResolver::NativeXPathNSResolver(RawPtr<Node> node)
35 : m_node(node) 35 : m_node(node)
36 { 36 {
37 } 37 }
38 38
39 AtomicString NativeXPathNSResolver::lookupNamespaceURI(const String& prefix) 39 AtomicString NativeXPathNSResolver::lookupNamespaceURI(const String& prefix)
40 { 40 {
41 // This is not done by Node::lookupNamespaceURI as per the DOM3 Core spec, 41 // This is not done by Node::lookupNamespaceURI as per the DOM3 Core spec,
42 // but the XPath spec says that we should do it for XPathNSResolver. 42 // but the XPath spec says that we should do it for XPathNSResolver.
43 if (prefix == "xml") 43 if (prefix == "xml")
44 return XMLNames::xmlNamespaceURI; 44 return XMLNames::xmlNamespaceURI;
45 45
46 return m_node ? m_node->lookupNamespaceURI(prefix) : nullAtom; 46 return m_node ? m_node->lookupNamespaceURI(prefix) : nullAtom;
47 } 47 }
48 48
49 DEFINE_TRACE(NativeXPathNSResolver) 49 DEFINE_TRACE(NativeXPathNSResolver)
50 { 50 {
51 visitor->trace(m_node); 51 visitor->trace(m_node);
52 XPathNSResolver::trace(visitor); 52 XPathNSResolver::trace(visitor);
53 } 53 }
54 54
55 } // namespace blink 55 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/xml/NativeXPathNSResolver.h ('k') | third_party/WebKit/Source/core/xml/XPathExpressionNode.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698