Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(88)

Side by Side Diff: third_party/WebKit/Source/core/dom/DecodedDataDocumentParser.cpp

Issue 1983753002: Remove OwnPtr::release() calls in core/ (part 2). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/css/resolver/StyleResolverStats.cpp ('k') | third_party/WebKit/Source/core/dom/MessagePort.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698