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

Side by Side Diff: third_party/WebKit/Source/platform/SharedBuffer.h

Issue 2810413002: Rewrite references to "wtf/" to "platform/wtf/" in the rest of platform/. (Closed)
Patch Set: Created 3 years, 8 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) 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
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
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
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/platform/SerializedResource.h ('k') | third_party/WebKit/Source/platform/SharedBuffer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698