| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Google, Inc. All Rights Reserved. | 2 * Copyright (C) 2010 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 | 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 m_decoder = std::move(decoder); | 50 m_decoder = std::move(decoder); |
| 51 } | 51 } |
| 52 | 52 |
| 53 TextResourceDecoder* DecodedDataDocumentParser::decoder() | 53 TextResourceDecoder* DecodedDataDocumentParser::decoder() |
| 54 { | 54 { |
| 55 return m_decoder.get(); | 55 return m_decoder.get(); |
| 56 } | 56 } |
| 57 | 57 |
| 58 PassOwnPtr<TextResourceDecoder> DecodedDataDocumentParser::takeDecoder() | 58 PassOwnPtr<TextResourceDecoder> DecodedDataDocumentParser::takeDecoder() |
| 59 { | 59 { |
| 60 return m_decoder.release(); | 60 return std::move(m_decoder); |
| 61 } | 61 } |
| 62 | 62 |
| 63 void DecodedDataDocumentParser::appendBytes(const char* data, size_t length) | 63 void DecodedDataDocumentParser::appendBytes(const char* data, size_t length) |
| 64 { | 64 { |
| 65 if (!length) | 65 if (!length) |
| 66 return; | 66 return; |
| 67 | 67 |
| 68 // This should be checking isStopped(), but XMLDocumentParser prematurely | 68 // This should be checking isStopped(), but XMLDocumentParser prematurely |
| 69 // stops parsing when handling an XSLT processing instruction and still | 69 // stops parsing when handling an XSLT processing instruction and still |
| 70 // needs to receive decoded bytes. | 70 // needs to receive decoded bytes. |
| (...skipping 23 matching lines...) Expand all Loading... |
| 94 | 94 |
| 95 void DecodedDataDocumentParser::updateDocument(String& decodedData) | 95 void DecodedDataDocumentParser::updateDocument(String& decodedData) |
| 96 { | 96 { |
| 97 document()->setEncodingData(DocumentEncodingData(*m_decoder.get())); | 97 document()->setEncodingData(DocumentEncodingData(*m_decoder.get())); |
| 98 | 98 |
| 99 if (!decodedData.isEmpty()) | 99 if (!decodedData.isEmpty()) |
| 100 append(decodedData); | 100 append(decodedData); |
| 101 } | 101 } |
| 102 | 102 |
| 103 } // namespace blink | 103 } // namespace blink |
| OLD | NEW |