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 22 matching lines...) Expand all Loading... |
33 | 33 |
34 #include "platform/SharedBufferChunkReader.h" | 34 #include "platform/SharedBufferChunkReader.h" |
35 #include "platform/heap/Handle.h" | 35 #include "platform/heap/Handle.h" |
36 #include "wtf/RefPtr.h" | 36 #include "wtf/RefPtr.h" |
37 #include "wtf/Vector.h" | 37 #include "wtf/Vector.h" |
38 | 38 |
39 namespace WTF { | 39 namespace WTF { |
40 class String; | 40 class String; |
41 } | 41 } |
42 | 42 |
43 namespace WebCore { | 43 namespace blink { |
44 | 44 |
45 class ArchiveResource; | 45 class ArchiveResource; |
46 class MHTMLArchive; | 46 class MHTMLArchive; |
47 class MIMEHeader; | 47 class MIMEHeader; |
48 class SharedBuffer; | 48 class SharedBuffer; |
49 | 49 |
50 class PLATFORM_EXPORT MHTMLParser FINAL { | 50 class PLATFORM_EXPORT MHTMLParser FINAL { |
51 STACK_ALLOCATED(); | 51 STACK_ALLOCATED(); |
52 public: | 52 public: |
53 explicit MHTMLParser(SharedBuffer*); | 53 explicit MHTMLParser(SharedBuffer*); |
(...skipping 13 matching lines...) Expand all Loading... |
67 void addResourceToArchive(ArchiveResource*, MHTMLArchive*); | 67 void addResourceToArchive(ArchiveResource*, MHTMLArchive*); |
68 | 68 |
69 SharedBufferChunkReader m_lineReader; | 69 SharedBufferChunkReader m_lineReader; |
70 WillBeHeapVector<RefPtrWillBeMember<ArchiveResource> > m_resources; | 70 WillBeHeapVector<RefPtrWillBeMember<ArchiveResource> > m_resources; |
71 WillBeHeapVector<RefPtrWillBeMember<MHTMLArchive> > m_frames; | 71 WillBeHeapVector<RefPtrWillBeMember<MHTMLArchive> > m_frames; |
72 }; | 72 }; |
73 | 73 |
74 } | 74 } |
75 | 75 |
76 #endif | 76 #endif |
OLD | NEW |