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

Side by Side Diff: third_party/WebKit/Source/platform/exported/WebBlobData.cpp

Issue 1917193006: WTF: Make PassOwnPtr<T> move-only. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. 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 * Copyright (C) 2013 Intel Corporation. All rights reserved. 3 * Copyright (C) 2013 Intel Corporation. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are 6 * modification, are permitted provided that the following conditions are
7 * met: 7 * met:
8 * 8 *
9 * * Redistributions of source code must retain the above copyright 9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 ASSERT_NOT_REACHED(); 87 ASSERT_NOT_REACHED();
88 return false; 88 return false;
89 } 89 }
90 90
91 WebString WebBlobData::contentType() const 91 WebString WebBlobData::contentType() const
92 { 92 {
93 ASSERT(!isNull()); 93 ASSERT(!isNull());
94 return m_private->contentType(); 94 return m_private->contentType();
95 } 95 }
96 96
97 WebBlobData::WebBlobData(const PassOwnPtr<BlobData>& data) 97 WebBlobData::WebBlobData(PassOwnPtr<BlobData> data)
98 : m_private(data) 98 : m_private(std::move(data))
99 { 99 {
100 } 100 }
101 101
102 WebBlobData& WebBlobData::operator=(const PassOwnPtr<BlobData>& data) 102 WebBlobData& WebBlobData::operator=(PassOwnPtr<BlobData> data)
103 { 103 {
104 m_private.reset(data); 104 m_private.reset(std::move(data));
105 return *this; 105 return *this;
106 } 106 }
107 107
108 WebBlobData::operator PassOwnPtr<BlobData>() 108 WebBlobData::operator PassOwnPtr<BlobData>()
109 { 109 {
110 return m_private.release(); 110 return m_private.release();
111 } 111 }
112 112
113 } // namespace blink 113 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698