| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006 Apple Computer, Inc. All rights reserved. | 2 * Copyright (C) 2006 Apple Computer, Inc. All rights reserved. |
| 3 * Copyright (C) Research In Motion Limited 2009-2010. All rights reserved. | 3 * Copyright (C) Research In Motion Limited 2009-2010. All rights reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. 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 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY | 21 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY |
| 22 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 22 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 24 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 24 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 25 */ | 25 */ |
| 26 | 26 |
| 27 #ifndef SharedBuffer_h | 27 #ifndef SharedBuffer_h |
| 28 #define SharedBuffer_h | 28 #define SharedBuffer_h |
| 29 | 29 |
| 30 #include "platform/PlatformExport.h" | 30 #include "platform/PlatformExport.h" |
| 31 #include "platform/wtf/Forward.h" |
| 32 #include "platform/wtf/RefCounted.h" |
| 33 #include "platform/wtf/Vector.h" |
| 34 #include "platform/wtf/text/WTFString.h" |
| 31 #include "third_party/skia/include/core/SkData.h" | 35 #include "third_party/skia/include/core/SkData.h" |
| 32 #include "wtf/Forward.h" | |
| 33 #include "wtf/RefCounted.h" | |
| 34 #include "wtf/Vector.h" | |
| 35 #include "wtf/text/WTFString.h" | |
| 36 | 36 |
| 37 namespace blink { | 37 namespace blink { |
| 38 | 38 |
| 39 class WebProcessMemoryDump; | 39 class WebProcessMemoryDump; |
| 40 | 40 |
| 41 class PLATFORM_EXPORT SharedBuffer : public RefCounted<SharedBuffer> { | 41 class PLATFORM_EXPORT SharedBuffer : public RefCounted<SharedBuffer> { |
| 42 public: | 42 public: |
| 43 enum : unsigned { kSegmentSize = 0x1000 }; | 43 enum : unsigned { kSegmentSize = 0x1000 }; |
| 44 | 44 |
| 45 static PassRefPtr<SharedBuffer> Create() { | 45 static PassRefPtr<SharedBuffer> Create() { |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 154 size_t GetSomeDataInternal(const char*& data, size_t position) const; | 154 size_t GetSomeDataInternal(const char*& data, size_t position) const; |
| 155 | 155 |
| 156 size_t size_; | 156 size_t size_; |
| 157 mutable Vector<char> buffer_; | 157 mutable Vector<char> buffer_; |
| 158 mutable Vector<char*> segments_; | 158 mutable Vector<char*> segments_; |
| 159 }; | 159 }; |
| 160 | 160 |
| 161 } // namespace blink | 161 } // namespace blink |
| 162 | 162 |
| 163 #endif // SharedBuffer_h | 163 #endif // SharedBuffer_h |
| OLD | NEW |