OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2011 Google Inc. All rights reserved. | 2 * Copyright (C) 2011 Google Inc. All rights reserved. |
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 are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 16 matching lines...) Expand all Loading... |
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
29 */ | 29 */ |
30 | 30 |
31 #ifndef MHTMLParser_h | 31 #ifndef MHTMLParser_h |
32 #define MHTMLParser_h | 32 #define MHTMLParser_h |
33 | 33 |
34 #include "platform/SharedBufferChunkReader.h" | 34 #include "platform/SharedBufferChunkReader.h" |
35 #include "wtf/RefPtr.h" | 35 #include "wtf/RefPtr.h" |
36 #include "wtf/Vector.h" | 36 #include "wtf/Vector.h" |
37 #include "wtf/text/WTFString.h" | 37 |
| 38 namespace WTF { |
| 39 class String; |
| 40 } |
38 | 41 |
39 namespace WebCore { | 42 namespace WebCore { |
40 | 43 |
41 class ArchiveResource; | 44 class ArchiveResource; |
42 class MHTMLArchive; | 45 class MHTMLArchive; |
43 class MIMEHeader; | 46 class MIMEHeader; |
44 class SharedBuffer; | 47 class SharedBuffer; |
45 | 48 |
46 class PLATFORM_EXPORT MHTMLParser { | 49 class PLATFORM_EXPORT MHTMLParser { |
47 public: | 50 public: |
(...skipping 15 matching lines...) Expand all Loading... |
63 | 66 |
64 SharedBufferChunkReader m_lineReader; | 67 SharedBufferChunkReader m_lineReader; |
65 Vector<RefPtr<ArchiveResource> > m_resources; | 68 Vector<RefPtr<ArchiveResource> > m_resources; |
66 Vector<RefPtr<MHTMLArchive> > m_frames; | 69 Vector<RefPtr<MHTMLArchive> > m_frames; |
67 }; | 70 }; |
68 | 71 |
69 } | 72 } |
70 | 73 |
71 #endif | 74 #endif |
72 | 75 |
OLD | NEW |