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

Unified Diff: third_party/WebKit/Source/platform/image-decoders/FastSharedBufferReader.cpp

Issue 2761693002: Wrapped PassRefPtrs in move where passed to RefPtr constructor. (Closed)
Patch Set: Added move wraps for multiple instances in 1 line. Created 3 years, 9 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/platform/image-decoders/FastSharedBufferReader.cpp
diff --git a/third_party/WebKit/Source/platform/image-decoders/FastSharedBufferReader.cpp b/third_party/WebKit/Source/platform/image-decoders/FastSharedBufferReader.cpp
index a8c14ae3abb4080df37c11821773c53c5afa9e7d..720bc5a395c0d0c0952cb9782d2c4175f8a6512c 100644
--- a/third_party/WebKit/Source/platform/image-decoders/FastSharedBufferReader.cpp
+++ b/third_party/WebKit/Source/platform/image-decoders/FastSharedBufferReader.cpp
@@ -33,7 +33,10 @@
namespace blink {
FastSharedBufferReader::FastSharedBufferReader(PassRefPtr<SegmentReader> data)
- : m_data(data), m_segment(0), m_segmentLength(0), m_dataPosition(0) {}
+ : m_data(std::move(data)),
+ m_segment(0),
+ m_segmentLength(0),
+ m_dataPosition(0) {}
void FastSharedBufferReader::setData(PassRefPtr<SegmentReader> data) {
if (data == m_data)

Powered by Google App Engine
This is Rietveld 408576698