| 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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 BLINK_PLATFORM_EXPORT WebBlobData(); | 61 BLINK_PLATFORM_EXPORT WebBlobData(); |
| 62 BLINK_PLATFORM_EXPORT ~WebBlobData(); | 62 BLINK_PLATFORM_EXPORT ~WebBlobData(); |
| 63 | 63 |
| 64 bool isNull() const { return !m_private.get(); } | 64 bool isNull() const { return !m_private.get(); } |
| 65 | 65 |
| 66 // Returns the number of items. | 66 // Returns the number of items. |
| 67 BLINK_PLATFORM_EXPORT size_t itemCount() const; | 67 BLINK_PLATFORM_EXPORT size_t itemCount() const; |
| 68 | 68 |
| 69 // Retrieves the values of the item at the given index. Returns false if | 69 // Retrieves the values of the item at the given index. Returns false if |
| 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 |
| 72 // transfered to the result in the case of memory items. A second call with |
| 73 // the same index will result in null data. |
| 74 // TODO(dmurph): change the name to 'takeItemAt' |
| 71 BLINK_PLATFORM_EXPORT bool itemAt(size_t index, Item& result) const; | 75 BLINK_PLATFORM_EXPORT bool itemAt(size_t index, Item& result) const; |
| 72 | 76 |
| 73 BLINK_PLATFORM_EXPORT WebString contentType() const; | 77 BLINK_PLATFORM_EXPORT WebString contentType() const; |
| 74 | 78 |
| 75 #if INSIDE_BLINK | 79 #if INSIDE_BLINK |
| 76 BLINK_PLATFORM_EXPORT WebBlobData(const WTF::PassOwnPtr<BlobData>&); | 80 BLINK_PLATFORM_EXPORT WebBlobData(const WTF::PassOwnPtr<BlobData>&); |
| 77 BLINK_PLATFORM_EXPORT WebBlobData& operator=(const WTF::PassOwnPtr<BlobData>
&); | 81 BLINK_PLATFORM_EXPORT WebBlobData& operator=(const WTF::PassOwnPtr<BlobData>
&); |
| 78 BLINK_PLATFORM_EXPORT operator WTF::PassOwnPtr<BlobData>(); | 82 BLINK_PLATFORM_EXPORT operator WTF::PassOwnPtr<BlobData>(); |
| 79 #endif | 83 #endif |
| 80 | 84 |
| 81 private: | 85 private: |
| 82 WebPrivateOwnPtr<BlobData> m_private; | 86 WebPrivateOwnPtr<BlobData> m_private; |
| 83 }; | 87 }; |
| 84 | 88 |
| 85 } // namespace blink | 89 } // namespace blink |
| 86 | 90 |
| 87 #endif // WebBlobData_h | 91 #endif // WebBlobData_h |
| OLD | NEW |