| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2000 Peter Kelly (pmk@post.com) | 2 * Copyright (C) 2000 Peter Kelly (pmk@post.com) |
| 3 * Copyright (C) 2005, 2006 Apple Computer, Inc. | 3 * Copyright (C) 2005, 2006 Apple Computer, Inc. |
| 4 * Copyright (C) 2007 Samuel Weinig (sam@webkit.org) | 4 * Copyright (C) 2007 Samuel Weinig (sam@webkit.org) |
| 5 * Copyright (C) 2010 Google, Inc. | 5 * Copyright (C) 2010 Google, Inc. |
| 6 * | 6 * |
| 7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
| 8 * modify it under the terms of the GNU Library General Public | 8 * modify it under the terms of the GNU Library General Public |
| 9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
| 10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 enum ParserState { | 79 enum ParserState { |
| 80 ParsingState, | 80 ParsingState, |
| 81 StoppingState, | 81 StoppingState, |
| 82 StoppedState, | 82 StoppedState, |
| 83 DetachedState | 83 DetachedState |
| 84 }; | 84 }; |
| 85 ParserState m_state; | 85 ParserState m_state; |
| 86 | 86 |
| 87 // Every DocumentParser needs a pointer back to the document. | 87 // Every DocumentParser needs a pointer back to the document. |
| 88 // m_document will be 0 after the parser is stopped. | 88 // m_document will be 0 after the parser is stopped. |
| 89 RawPtr<Document> m_document; | 89 Document* m_document; |
| 90 }; | 90 }; |
| 91 | 91 |
| 92 } // namespace blink | 92 } // namespace blink |
| 93 | 93 |
| 94 #endif // DocumentParser_h | 94 #endif // DocumentParser_h |
| OLD | NEW |