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 19 matching lines...) Expand all Loading... |
30 | 30 |
31 #ifndef MHTMLArchive_h | 31 #ifndef MHTMLArchive_h |
32 #define MHTMLArchive_h | 32 #define MHTMLArchive_h |
33 | 33 |
34 #include "platform/heap/Handle.h" | 34 #include "platform/heap/Handle.h" |
35 #include "wtf/PassRefPtr.h" | 35 #include "wtf/PassRefPtr.h" |
36 #include "wtf/RefCounted.h" | 36 #include "wtf/RefCounted.h" |
37 #include "wtf/RefPtr.h" | 37 #include "wtf/RefPtr.h" |
38 #include "wtf/Vector.h" | 38 #include "wtf/Vector.h" |
39 | 39 |
40 namespace WebCore { | 40 namespace blink { |
41 | 41 |
42 class ArchiveResource; | 42 class ArchiveResource; |
43 class KURL; | 43 class KURL; |
44 class MHTMLParser; | 44 class MHTMLParser; |
45 class SharedBuffer; | 45 class SharedBuffer; |
46 | 46 |
47 struct SerializedResource; | 47 struct SerializedResource; |
48 | 48 |
49 class PLATFORM_EXPORT MHTMLArchive FINAL : public RefCountedWillBeGarbageCollect
edFinalized<MHTMLArchive> { | 49 class PLATFORM_EXPORT MHTMLArchive FINAL : public RefCountedWillBeGarbageCollect
edFinalized<MHTMLArchive> { |
50 public: | 50 public: |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 #endif | 83 #endif |
84 | 84 |
85 RefPtrWillBeMember<ArchiveResource> m_mainResource; | 85 RefPtrWillBeMember<ArchiveResource> m_mainResource; |
86 SubArchiveResources m_subresources; | 86 SubArchiveResources m_subresources; |
87 SubFrameArchives m_subframeArchives; | 87 SubFrameArchives m_subframeArchives; |
88 }; | 88 }; |
89 | 89 |
90 } | 90 } |
91 | 91 |
92 #endif | 92 #endif |
OLD | NEW |