| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010. Adam Barth. All rights reserved. | 2 * Copyright (C) 2010. Adam Barth. 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 class DocumentWriter : public RefCountedWillBeGarbageCollectedFinalized<Document
Writer> { | 42 class DocumentWriter : public RefCountedWillBeGarbageCollectedFinalized<Document
Writer> { |
| 43 WTF_MAKE_NONCOPYABLE(DocumentWriter); | 43 WTF_MAKE_NONCOPYABLE(DocumentWriter); |
| 44 public: | 44 public: |
| 45 static PassRefPtrWillBeRawPtr<DocumentWriter> create(Document*, const Atomic
String& mimeType = emptyAtom, const AtomicString& encoding = emptyAtom); | 45 static PassRefPtrWillBeRawPtr<DocumentWriter> create(Document*, const Atomic
String& mimeType = emptyAtom, const AtomicString& encoding = emptyAtom); |
| 46 | 46 |
| 47 ~DocumentWriter(); | 47 ~DocumentWriter(); |
| 48 void trace(Visitor*); | 48 void trace(Visitor*); |
| 49 | 49 |
| 50 void end(); | 50 void end(); |
| 51 | 51 |
| 52 void forceSynchronousParse(); |
| 52 void addData(const char* bytes, size_t length); | 53 void addData(const char* bytes, size_t length); |
| 53 | 54 |
| 54 const AtomicString& mimeType() const { return m_decoderBuilder.mimeType(); } | 55 const AtomicString& mimeType() const { return m_decoderBuilder.mimeType(); } |
| 55 const AtomicString& encoding() const { return m_decoderBuilder.encoding(); } | 56 const AtomicString& encoding() const { return m_decoderBuilder.encoding(); } |
| 56 | 57 |
| 57 // Exposed for DocumentLoader::replaceDocumentWhileExecutingJavaScriptURL. | 58 // Exposed for DocumentLoader::replaceDocumentWhileExecutingJavaScriptURL. |
| 58 void appendReplacingData(const String&); | 59 void appendReplacingData(const String&); |
| 59 | 60 |
| 60 void setUserChosenEncoding(const String& charset); | 61 void setUserChosenEncoding(const String& charset); |
| 61 | 62 |
| 62 void setDocumentWasLoadedAsPartOfNavigation(); | 63 void setDocumentWasLoadedAsPartOfNavigation(); |
| 63 | 64 |
| 64 private: | 65 private: |
| 65 DocumentWriter(Document*, const AtomicString& mimeType, const AtomicString&
encoding); | 66 DocumentWriter(Document*, const AtomicString& mimeType, const AtomicString&
encoding); |
| 66 | 67 |
| 67 RawPtrWillBeMember<Document> m_document; | 68 RawPtrWillBeMember<Document> m_document; |
| 68 TextResourceDecoderBuilder m_decoderBuilder; | 69 TextResourceDecoderBuilder m_decoderBuilder; |
| 69 | 70 |
| 70 RefPtrWillBeMember<DocumentParser> m_parser; | 71 RefPtrWillBeMember<DocumentParser> m_parser; |
| 72 bool m_forcedSynchronousParse; |
| 71 }; | 73 }; |
| 72 | 74 |
| 73 } // namespace blink | 75 } // namespace blink |
| 74 | 76 |
| 75 #endif // DocumentWriter_h | 77 #endif // DocumentWriter_h |
| OLD | NEW |