OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 STORAGE_BROWSER_BLOB_INTERNAL_BLOB_DATA_H_ | 5 #ifndef STORAGE_BROWSER_BLOB_INTERNAL_BLOB_DATA_H_ |
6 #define STORAGE_BROWSER_BLOB_INTERNAL_BLOB_DATA_H_ | 6 #define STORAGE_BROWSER_BLOB_INTERNAL_BLOB_DATA_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "base/macros.h" | 11 #include "base/macros.h" |
12 #include "base/memory/ref_counted.h" | 12 #include "base/memory/ref_counted.h" |
13 #include "storage/browser/blob/shareable_blob_data_item.h" | 13 #include "storage/browser/blob/shareable_blob_data_item.h" |
14 | 14 |
15 namespace storage { | 15 namespace storage { |
16 class ViewBlobInternalsJob; | 16 class ViewBlobInternalsJob; |
17 | 17 |
18 // This class represents a blob in the BlobStorageContext. It is constructed | 18 // This class represents a blob in the BlobStorageContext. It is constructed |
19 // using the internal Builder class. | 19 // using the internal Builder class. |
20 class InternalBlobData { | 20 class InternalBlobData { |
21 public: | 21 public: |
22 ~InternalBlobData(); | 22 ~InternalBlobData(); |
23 | 23 |
24 protected: | 24 protected: |
25 friend class BlobStorageContext; | 25 friend class BlobStorageContext; |
| 26 friend class BlobStorageRegistry; |
26 friend class ViewBlobInternalsJob; | 27 friend class ViewBlobInternalsJob; |
27 | 28 |
28 // Removes the given blob uuid from the internal ShareableBlobDataItems. | 29 // Removes the given blob uuid from the internal ShareableBlobDataItems. |
29 // This is called when this blob is being destroyed. | 30 // This is called when this blob is being destroyed. |
30 void RemoveBlobFromShareableItems(const std::string& blob_uuid); | 31 void RemoveBlobFromShareableItems(const std::string& blob_uuid); |
31 | 32 |
32 const std::vector<scoped_refptr<ShareableBlobDataItem>>& items() const; | 33 const std::vector<scoped_refptr<ShareableBlobDataItem>>& items() const; |
33 const std::string& content_type() const; | 34 const std::string& content_type() const; |
34 const std::string& content_disposition() const; | 35 const std::string& content_disposition() const; |
35 | 36 |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
74 scoped_ptr<::storage::InternalBlobData> data_; | 75 scoped_ptr<::storage::InternalBlobData> data_; |
75 | 76 |
76 DISALLOW_COPY_AND_ASSIGN(Builder); | 77 DISALLOW_COPY_AND_ASSIGN(Builder); |
77 }; | 78 }; |
78 | 79 |
79 DISALLOW_COPY_AND_ASSIGN(InternalBlobData); | 80 DISALLOW_COPY_AND_ASSIGN(InternalBlobData); |
80 }; | 81 }; |
81 | 82 |
82 } // namespace storage | 83 } // namespace storage |
83 #endif // STORAGE_BROWSER_BLOB_INTERNAL_BLOB_DATA_H_ | 84 #endif // STORAGE_BROWSER_BLOB_INTERNAL_BLOB_DATA_H_ |
OLD | NEW |