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

Side by Side Diff: Source/core/xml/XPathParser.h

Issue 252633005: Enable WTF::HashSet<OwnPtr<> > (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Met comments from Erik Corry Created 6 years, 7 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
« no previous file with comments | « no previous file | Source/core/xml/XPathParser.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2005 Maksim Orlovich <maksim@kde.org> 2 * Copyright 2005 Maksim Orlovich <maksim@kde.org>
3 * Copyright (C) 2006 Apple Computer, Inc. 3 * Copyright (C) 2006 Apple Computer, 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 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 static Parser* currentParser; 119 static Parser* currentParser;
120 120
121 unsigned m_nextPos; 121 unsigned m_nextPos;
122 String m_data; 122 String m_data;
123 int m_lastTokenType; 123 int m_lastTokenType;
124 RefPtrWillBeMember<XPathNSResolver> m_resolver; 124 RefPtrWillBeMember<XPathNSResolver> m_resolver;
125 125
126 HashSet<ParseNode*> m_parseNodes; 126 HashSet<ParseNode*> m_parseNodes;
127 HashSet<Vector<OwnPtr<Predicate> >*> m_predicateVectors; 127 HashSet<Vector<OwnPtr<Predicate> >*> m_predicateVectors;
128 HashSet<Vector<OwnPtr<Expression> >*> m_expressionVectors; 128 HashSet<Vector<OwnPtr<Expression> >*> m_expressionVectors;
129 HashSet<String*> m_strings; 129 HashSet<OwnPtr<String> > m_strings;
130 HashSet<Step::NodeTest*> m_nodeTests; 130 HashSet<OwnPtr<Step::NodeTest> > m_nodeTests;
131 }; 131 };
132 132
133 } // XPath 133 } // XPath
134 134
135 } // WebCore 135 } // WebCore
136 136
137 #endif 137 #endif
OLDNEW
« no previous file with comments | « no previous file | Source/core/xml/XPathParser.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698