OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef WEBKIT_BLOB_BLOB_DATA_H_ | 5 #ifndef WEBKIT_COMMON_BLOB_BLOB_DATA_H_ |
6 #define WEBKIT_BLOB_BLOB_DATA_H_ | 6 #define WEBKIT_COMMON_BLOB_BLOB_DATA_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
12 #include "base/files/file_path.h" | 12 #include "base/files/file_path.h" |
13 #include "base/memory/ref_counted.h" | 13 #include "base/memory/ref_counted.h" |
14 #include "base/time.h" | 14 #include "base/time.h" |
15 #include "googleurl/src/gurl.h" | 15 #include "googleurl/src/gurl.h" |
16 #include "webkit/base/data_element.h" | 16 #include "webkit/base/data_element.h" |
17 #include "webkit/blob/shareable_file_reference.h" | 17 #include "webkit/common/blob/shareable_file_reference.h" |
18 #include "webkit/storage/webkit_storage_export.h" | 18 #include "webkit/storage/webkit_storage_export.h" |
19 | 19 |
20 namespace webkit_blob { | 20 namespace webkit_blob { |
21 | 21 |
| 22 // TODO:(michaeln): Is BlobData needed in renderers or just BlobData::Element??? |
| 23 // BlobData pulls in ScopedFile and ShareableFileRef which really aren't needed |
| 24 // and don't belong in renderers. |
| 25 |
22 class WEBKIT_STORAGE_EXPORT BlobData : public base::RefCounted<BlobData> { | 26 class WEBKIT_STORAGE_EXPORT BlobData : public base::RefCounted<BlobData> { |
23 public: | 27 public: |
24 typedef webkit_base::DataElement Item; | 28 typedef webkit_base::DataElement Item; |
25 | 29 |
26 // TODO(michaeln): remove the empty ctor when we fully transition to uuids. | 30 // TODO(michaeln): remove the empty ctor when we fully transition to uuids. |
27 BlobData(); | 31 BlobData(); |
28 explicit BlobData(const std::string& uuid); | 32 explicit BlobData(const std::string& uuid); |
29 | 33 |
30 void AppendData(const std::string& data) { | 34 void AppendData(const std::string& data) { |
31 AppendData(data.c_str(), data.size()); | 35 AppendData(data.c_str(), data.size()); |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
92 return true; | 96 return true; |
93 } | 97 } |
94 | 98 |
95 inline bool operator!=(const BlobData& a, const BlobData& b) { | 99 inline bool operator!=(const BlobData& a, const BlobData& b) { |
96 return !(a == b); | 100 return !(a == b); |
97 } | 101 } |
98 #endif // defined(UNIT_TEST) | 102 #endif // defined(UNIT_TEST) |
99 | 103 |
100 } // namespace webkit_blob | 104 } // namespace webkit_blob |
101 | 105 |
102 #endif // WEBKIT_BLOB_BLOB_DATA_H_ | 106 #endif // WEBKIT_COMMON_BLOB_BLOB_DATA_H_ |
OLD | NEW |