OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 CONTENT_CHILD_WEBBLOBREGISTRY_IMPL_H_ | 5 #ifndef CONTENT_CHILD_WEBBLOBREGISTRY_IMPL_H_ |
6 #define CONTENT_CHILD_WEBBLOBREGISTRY_IMPL_H_ | 6 #define CONTENT_CHILD_WEBBLOBREGISTRY_IMPL_H_ |
7 | 7 |
| 8 #include <stddef.h> |
| 9 #include <stdint.h> |
| 10 |
8 #include <string> | 11 #include <string> |
9 #include <vector> | 12 #include <vector> |
10 | 13 |
11 #include "base/memory/ref_counted.h" | 14 #include "base/memory/ref_counted.h" |
12 #include "content/child/blob_storage/blob_consolidation.h" | 15 #include "content/child/blob_storage/blob_consolidation.h" |
13 #include "storage/common/data_element.h" | 16 #include "storage/common/data_element.h" |
14 #include "third_party/WebKit/public/platform/WebBlobRegistry.h" | 17 #include "third_party/WebKit/public/platform/WebBlobRegistry.h" |
15 | 18 |
16 namespace blink { | 19 namespace blink { |
17 class WebThreadSafeData; | 20 class WebThreadSafeData; |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
89 BlobConsolidation consolidation_; | 92 BlobConsolidation consolidation_; |
90 scoped_refptr<ThreadSafeSender> sender_; | 93 scoped_refptr<ThreadSafeSender> sender_; |
91 }; | 94 }; |
92 | 95 |
93 scoped_refptr<ThreadSafeSender> sender_; | 96 scoped_refptr<ThreadSafeSender> sender_; |
94 }; | 97 }; |
95 | 98 |
96 } // namespace content | 99 } // namespace content |
97 | 100 |
98 #endif // CONTENT_CHILD_WEBBLOBREGISTRY_IMPL_H_ | 101 #endif // CONTENT_CHILD_WEBBLOBREGISTRY_IMPL_H_ |
OLD | NEW |