Index: ppapi/cpp/dev/buffer_dev.h |
=================================================================== |
--- ppapi/cpp/dev/buffer_dev.h (revision 67614) |
+++ ppapi/cpp/dev/buffer_dev.h (working copy) |
@@ -18,19 +18,19 @@ |
// Allocates a new Buffer in the browser with the given size. The |
// resulting object will be is_null() if the allocation failed. |
- explicit Buffer_Dev(int32_t size); |
+ explicit Buffer_Dev(uint32_t size); |
~Buffer_Dev(); |
Buffer_Dev& operator=(const Buffer_Dev& other); |
void swap(Buffer_Dev& other); |
- int32_t size() const { return size_; } |
+ uint32_t size() const { return size_; } |
void* data() const { return data_; } |
private: |
void* data_; |
- int32_t size_; |
+ uint32_t size_; |
}; |
} // namespace pp |