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

Side by Side Diff: Source/core/html/FormDataList.h

Issue 176853004: Oilpan: move core/fileapi to oilpan's heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebased Created 6 years, 10 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) 2005, 2006, 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2005, 2006, 2008 Apple Inc. All rights reserved.
3 * 3 *
4 * This library is free software; you can redistribute it and/or 4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public 5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either 6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version. 7 * version 2 of the License, or (at your option) any later version.
8 * 8 *
9 * This library is distributed in the hope that it will be useful, 9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Library General Public License for more details. 12 * Library General Public License for more details.
13 * 13 *
14 * You should have received a copy of the GNU Library General Public License 14 * You should have received a copy of the GNU Library General Public License
15 * along with this library; see the file COPYING.LIB. If not, write to 15 * along with this library; see the file COPYING.LIB. If not, write to
16 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 16 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17 * Boston, MA 02110-1301, USA. 17 * Boston, MA 02110-1301, USA.
18 * 18 *
19 */ 19 */
20 20
21 #ifndef FormDataList_h 21 #ifndef FormDataList_h
22 #define FormDataList_h 22 #define FormDataList_h
23 23
24 #include "core/fileapi/Blob.h" 24 #include "core/fileapi/Blob.h"
25 #include "heap/Handle.h"
25 #include "platform/network/FormData.h" 26 #include "platform/network/FormData.h"
26 #include "wtf/Forward.h" 27 #include "wtf/Forward.h"
27 #include "wtf/text/CString.h" 28 #include "wtf/text/CString.h"
28 #include "wtf/text/TextEncoding.h" 29 #include "wtf/text/TextEncoding.h"
29 30
30 namespace WebCore { 31 namespace WebCore {
31 32
32 class FormDataList { 33 class FormDataList {
33 public: 34 public:
35 // This class is only allocated as part of vectors, this class'
Mads Ager (chromium) 2014/02/26 11:00:29 class's
36 // heap-allocated member is visited as part of tracing the vector.
34 class Item { 37 class Item {
Mads Ager (chromium) 2014/02/26 11:00:29 Until Gustav's change to automatically detect that
sof 2014/02/26 21:51:25 Done.
sof 2014/02/26 21:58:42 Forgot to add..I'm intruiged by how that can/will
38 ALLOW_ONLY_INLINE_ALLOCATION();
35 public: 39 public:
36 Item() { } 40 Item() { }
37 Item(const WTF::CString& data) : m_data(data) { } 41 Item(const WTF::CString& data) : m_data(data) { }
38 Item(PassRefPtr<Blob> blob, const String& filename) : m_blob(blob), m_fi lename(filename) { } 42 Item(PassRefPtrWillBeRawPtr<Blob> blob, const String& filename) : m_blob (blob), m_filename(filename) { }
39 43
40 const WTF::CString& data() const { return m_data; } 44 const WTF::CString& data() const { return m_data; }
41 Blob* blob() const { return m_blob.get(); } 45 Blob* blob() const { return m_blob.get(); }
42 const String& filename() const { return m_filename; } 46 const String& filename() const { return m_filename; }
43 47
48 void trace(Visitor*);
49
44 private: 50 private:
45 WTF::CString m_data; 51 WTF::CString m_data;
46 RefPtr<Blob> m_blob; 52 RefPtrWillBeMember<Blob> m_blob;
47 String m_filename; 53 String m_filename;
48 }; 54 };
49 55
50 FormDataList(const WTF::TextEncoding&); 56 FormDataList(const WTF::TextEncoding&);
51 57
52 void appendData(const String& key, const String& value) 58 void appendData(const String& key, const String& value)
53 { 59 {
54 appendString(key); 60 appendString(key);
55 appendString(value); 61 appendString(value);
56 } 62 }
57 void appendData(const String& key, const CString& value) 63 void appendData(const String& key, const CString& value)
58 { 64 {
59 appendString(key); 65 appendString(key);
60 appendString(value); 66 appendString(value);
61 } 67 }
62 void appendData(const String& key, int value) 68 void appendData(const String& key, int value)
63 { 69 {
64 appendString(key); 70 appendString(key);
65 appendString(String::number(value)); 71 appendString(String::number(value));
66 } 72 }
67 void appendBlob(const String& key, PassRefPtr<Blob> blob, const String& file name = String()) 73 void appendBlob(const String& key, PassRefPtrWillBeRawPtr<Blob> blob, const String& filename = String())
68 { 74 {
69 appendString(key); 75 appendString(key);
70 appendBlob(blob, filename); 76 appendBlob(blob, filename);
71 } 77 }
72 78
73 const Vector<Item>& items() const { return m_items; } 79 const WillBeHeapVector<Item>& items() const { return m_items; }
74 const WTF::TextEncoding& encoding() const { return m_encoding; } 80 const WTF::TextEncoding& encoding() const { return m_encoding; }
75 81
76 PassRefPtr<FormData> createFormData(const WTF::TextEncoding&, FormData::Enco dingType = FormData::FormURLEncoded); 82 PassRefPtr<FormData> createFormData(const WTF::TextEncoding&, FormData::Enco dingType = FormData::FormURLEncoded);
77 PassRefPtr<FormData> createMultiPartFormData(const WTF::TextEncoding&); 83 PassRefPtr<FormData> createMultiPartFormData(const WTF::TextEncoding&);
78 84
85 void trace(Visitor*);
86
79 private: 87 private:
80 void appendKeyValuePairItemsTo(FormData*, const WTF::TextEncoding&, bool isM ultiPartForm, FormData::EncodingType = FormData::FormURLEncoded); 88 void appendKeyValuePairItemsTo(FormData*, const WTF::TextEncoding&, bool isM ultiPartForm, FormData::EncodingType = FormData::FormURLEncoded);
81 89
82 void appendString(const CString&); 90 void appendString(const CString&);
83 void appendString(const String&); 91 void appendString(const String&);
84 void appendBlob(PassRefPtr<Blob>, const String& filename); 92 void appendBlob(PassRefPtrWillBeRawPtr<Blob>, const String& filename);
85 93
86 WTF::TextEncoding m_encoding; 94 WTF::TextEncoding m_encoding;
87 Vector<Item> m_items; 95 WillBeHeapVector<Item> m_items;
88 }; 96 };
89 97
90 } // namespace WebCore 98 } // namespace WebCore
91 99
92 #endif // FormDataList_h 100 #endif // FormDataList_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698