| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2005 Frerich Raabe <raabe@kde.org> | 2 * Copyright (C) 2005 Frerich Raabe <raabe@kde.org> |
| 3 * Copyright (C) 2006, 2009 Apple Inc. | 3 * Copyright (C) 2006, 2009 Apple Inc. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * | 8 * |
| 9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | 23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 25 */ | 25 */ |
| 26 | 26 |
| 27 #ifndef XPathExpressionNode_h | 27 #ifndef XPathExpressionNode_h |
| 28 #define XPathExpressionNode_h | 28 #define XPathExpressionNode_h |
| 29 | 29 |
| 30 #include "core/CoreExport.h" | 30 #include "core/CoreExport.h" |
| 31 #include "core/dom/Node.h" | 31 #include "core/dom/Node.h" |
| 32 #include "core/xml/XPathValue.h" | 32 #include "core/xml/XPathValue.h" |
| 33 #include "wtf/HashMap.h" | 33 #include "platform/wtf/HashMap.h" |
| 34 #include "wtf/Vector.h" | 34 #include "platform/wtf/Vector.h" |
| 35 #include "wtf/text/StringHash.h" | 35 #include "platform/wtf/text/StringHash.h" |
| 36 | 36 |
| 37 namespace blink { | 37 namespace blink { |
| 38 | 38 |
| 39 namespace XPath { | 39 namespace XPath { |
| 40 | 40 |
| 41 struct CORE_EXPORT EvaluationContext { | 41 struct CORE_EXPORT EvaluationContext { |
| 42 STACK_ALLOCATED(); | 42 STACK_ALLOCATED(); |
| 43 | 43 |
| 44 public: | 44 public: |
| 45 explicit EvaluationContext(Node&); | 45 explicit EvaluationContext(Node&); |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 bool is_context_node_sensitive_; | 106 bool is_context_node_sensitive_; |
| 107 bool is_context_position_sensitive_; | 107 bool is_context_position_sensitive_; |
| 108 bool is_context_size_sensitive_; | 108 bool is_context_size_sensitive_; |
| 109 }; | 109 }; |
| 110 | 110 |
| 111 } // namespace XPath | 111 } // namespace XPath |
| 112 | 112 |
| 113 } // namespace blink | 113 } // namespace blink |
| 114 | 114 |
| 115 #endif // XPathExpressionNode_h | 115 #endif // XPathExpressionNode_h |
| OLD | NEW |