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

Side by Side 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, 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 are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 // index is out of bounds. 70 // index is out of bounds.
71 // This call is single use only per index. The memory ownership is 71 // This call is single use only per index. The memory ownership is
72 // transfered to the result in the case of memory items. A second call with 72 // transfered to the result in the case of memory items. A second call with
73 // the same index will result in null data. 73 // the same index will result in null data.
74 // TODO(dmurph): change the name to 'takeItemAt' 74 // TODO(dmurph): change the name to 'takeItemAt'
75 BLINK_PLATFORM_EXPORT bool itemAt(size_t index, Item& result) const; 75 BLINK_PLATFORM_EXPORT bool itemAt(size_t index, Item& result) const;
76 76
77 BLINK_PLATFORM_EXPORT WebString contentType() const; 77 BLINK_PLATFORM_EXPORT WebString contentType() const;
78 78
79 #if INSIDE_BLINK 79 #if INSIDE_BLINK
80 BLINK_PLATFORM_EXPORT WebBlobData(const WTF::PassOwnPtr<BlobData>&); 80 BLINK_PLATFORM_EXPORT WebBlobData(WTF::PassOwnPtr<BlobData>);
81 BLINK_PLATFORM_EXPORT WebBlobData& operator=(const WTF::PassOwnPtr<BlobData> &); 81 BLINK_PLATFORM_EXPORT WebBlobData& operator=(WTF::PassOwnPtr<BlobData>);
82 BLINK_PLATFORM_EXPORT operator WTF::PassOwnPtr<BlobData>(); 82 BLINK_PLATFORM_EXPORT operator WTF::PassOwnPtr<BlobData>();
83 #endif 83 #endif
84 84
85 private: 85 private:
86 WebPrivateOwnPtr<BlobData> m_private; 86 WebPrivateOwnPtr<BlobData> m_private;
87 }; 87 };
88 88
89 } // namespace blink 89 } // namespace blink
90 90
91 #endif // WebBlobData_h 91 #endif // WebBlobData_h
OLDNEW
« 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