OLD | NEW |
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 Loading... |
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 |
OLD | NEW |