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

Unified Diff: third_party/WebKit/public/platform/WebBlobData.h

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, 8 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
« no previous file with comments | « third_party/WebKit/Source/wtf/PassOwnPtr.h ('k') | third_party/WebKit/public/platform/WebPrivateOwnPtr.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/public/platform/WebBlobData.h
diff --git a/third_party/WebKit/public/platform/WebBlobData.h b/third_party/WebKit/public/platform/WebBlobData.h
index 98136cef8284e85619fa57cbbd614c717a8a0e66..6a8949f1518d50949b8ce5f957385ef0d1491bac 100644
--- a/third_party/WebKit/public/platform/WebBlobData.h
+++ b/third_party/WebKit/public/platform/WebBlobData.h
@@ -77,8 +77,8 @@ public:
BLINK_PLATFORM_EXPORT WebString contentType() const;
#if INSIDE_BLINK
- BLINK_PLATFORM_EXPORT WebBlobData(const WTF::PassOwnPtr<BlobData>&);
- BLINK_PLATFORM_EXPORT WebBlobData& operator=(const WTF::PassOwnPtr<BlobData>&);
+ BLINK_PLATFORM_EXPORT WebBlobData(WTF::PassOwnPtr<BlobData>);
+ BLINK_PLATFORM_EXPORT WebBlobData& operator=(WTF::PassOwnPtr<BlobData>);
BLINK_PLATFORM_EXPORT operator WTF::PassOwnPtr<BlobData>();
#endif
« no previous file with comments | « third_party/WebKit/Source/wtf/PassOwnPtr.h ('k') | third_party/WebKit/public/platform/WebPrivateOwnPtr.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698