| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2008, 2010 Apple Inc. All rights reserved. | 2 * Copyright (C) 2008, 2010 Apple 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 | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * | 7 * |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. 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 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 public: | 37 public: |
| 38 static PassRefPtr<ArchiveResource> create(PassRefPtr<SharedBuffer>, const KU
RL&, const ResourceResponse&); | 38 static PassRefPtr<ArchiveResource> create(PassRefPtr<SharedBuffer>, const KU
RL&, const ResourceResponse&); |
| 39 static PassRefPtr<ArchiveResource> create(PassRefPtr<SharedBuffer>, const KU
RL&, | 39 static PassRefPtr<ArchiveResource> create(PassRefPtr<SharedBuffer>, const KU
RL&, |
| 40 const String& mimeType, const String& textEncoding, const String& frameN
ame, | 40 const String& mimeType, const String& textEncoding, const String& frameN
ame, |
| 41 const ResourceResponse& = ResourceResponse()); | 41 const ResourceResponse& = ResourceResponse()); |
| 42 | 42 |
| 43 const String& mimeType() const { return m_mimeType; } | 43 const String& mimeType() const { return m_mimeType; } |
| 44 const String& textEncoding() const { return m_textEncoding; } | 44 const String& textEncoding() const { return m_textEncoding; } |
| 45 const String& frameName() const { return m_frameName; } | 45 const String& frameName() const { return m_frameName; } |
| 46 | 46 |
| 47 void ignoreWhenUnarchiving() { m_shouldIgnoreWhenUnarchiving = true; } | |
| 48 bool shouldIgnoreWhenUnarchiving() const { return m_shouldIgnoreWhenUnarchiv
ing; } | |
| 49 | |
| 50 private: | 47 private: |
| 51 ArchiveResource(PassRefPtr<SharedBuffer>, const KURL&, const String& mimeTyp
e, const String& textEncoding, const String& frameName, const ResourceResponse&)
; | 48 ArchiveResource(PassRefPtr<SharedBuffer>, const KURL&, const String& mimeTyp
e, const String& textEncoding, const String& frameName, const ResourceResponse&)
; |
| 52 | 49 |
| 53 String m_mimeType; | 50 String m_mimeType; |
| 54 String m_textEncoding; | 51 String m_textEncoding; |
| 55 String m_frameName; | 52 String m_frameName; |
| 56 | |
| 57 bool m_shouldIgnoreWhenUnarchiving; | |
| 58 }; | 53 }; |
| 59 | 54 |
| 60 } | 55 } |
| 61 | 56 |
| 62 #endif // ArchiveResource_h | 57 #endif // ArchiveResource_h |
| OLD | NEW |