| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Apple Inc. All rights reserved. | 2 * Copyright (C) 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 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 */ | 24 */ |
| 25 | 25 |
| 26 #include "core/loader/SinkDocument.h" | 26 #include "core/loader/SinkDocument.h" |
| 27 | 27 |
| 28 #include "core/dom/RawDataDocumentParser.h" | 28 #include "core/dom/RawDataDocumentParser.h" |
| 29 | 29 |
| 30 namespace blink { | 30 namespace blink { |
| 31 | 31 |
| 32 class SinkDocumentParser : public RawDataDocumentParser { | 32 class SinkDocumentParser : public RawDataDocumentParser { |
| 33 public: | 33 public: |
| 34 static PassRefPtrWillBeRawPtr<SinkDocumentParser> create(SinkDocument* docum
ent) | 34 static RawPtr<SinkDocumentParser> create(SinkDocument* document) |
| 35 { | 35 { |
| 36 return adoptRefWillBeNoop(new SinkDocumentParser(document)); | 36 return new SinkDocumentParser(document); |
| 37 } | 37 } |
| 38 | 38 |
| 39 private: | 39 private: |
| 40 SinkDocumentParser(SinkDocument* document) | 40 SinkDocumentParser(SinkDocument* document) |
| 41 : RawDataDocumentParser(document) | 41 : RawDataDocumentParser(document) |
| 42 { | 42 { |
| 43 } | 43 } |
| 44 | 44 |
| 45 // Ignore all data. | 45 // Ignore all data. |
| 46 void appendBytes(const char*, size_t) override { } | 46 void appendBytes(const char*, size_t) override { } |
| 47 }; | 47 }; |
| 48 | 48 |
| 49 SinkDocument::SinkDocument(const DocumentInit& initializer) | 49 SinkDocument::SinkDocument(const DocumentInit& initializer) |
| 50 : HTMLDocument(initializer) | 50 : HTMLDocument(initializer) |
| 51 { | 51 { |
| 52 setCompatibilityMode(QuirksMode); | 52 setCompatibilityMode(QuirksMode); |
| 53 lockCompatibilityMode(); | 53 lockCompatibilityMode(); |
| 54 } | 54 } |
| 55 | 55 |
| 56 PassRefPtrWillBeRawPtr<DocumentParser> SinkDocument::createParser() | 56 RawPtr<DocumentParser> SinkDocument::createParser() |
| 57 { | 57 { |
| 58 return SinkDocumentParser::create(this); | 58 return SinkDocumentParser::create(this); |
| 59 } | 59 } |
| 60 | 60 |
| 61 } // namespace blink | 61 } // namespace blink |
| OLD | NEW |