OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_BROWSER_FILEAPI_STORAGE_HOST_H_ | 5 #ifndef CONTENT_BROWSER_FILEAPI_BLOB_STORAGE_HOST_H_ |
6 #define CONTENT_BROWSER_FILEAPI_STORAGE_HOST_H_ | 6 #define CONTENT_BROWSER_FILEAPI_BLOB_STORAGE_HOST_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <set> | 9 #include <set> |
10 #include <string> | 10 #include <string> |
11 | 11 |
12 #include "base/compiler_specific.h" | 12 #include "base/compiler_specific.h" |
13 #include "base/memory/weak_ptr.h" | 13 #include "base/memory/weak_ptr.h" |
14 #include "content/common/content_export.h" | 14 #include "content/common/content_export.h" |
15 #include "storage/common/data_element.h" | 15 #include "storage/common/data_element.h" |
16 | 16 |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
64 // The set of public blob urls coined by this consumer. | 64 // The set of public blob urls coined by this consumer. |
65 std::set<GURL> public_blob_urls_; | 65 std::set<GURL> public_blob_urls_; |
66 | 66 |
67 base::WeakPtr<storage::BlobStorageContext> context_; | 67 base::WeakPtr<storage::BlobStorageContext> context_; |
68 | 68 |
69 DISALLOW_COPY_AND_ASSIGN(BlobStorageHost); | 69 DISALLOW_COPY_AND_ASSIGN(BlobStorageHost); |
70 }; | 70 }; |
71 | 71 |
72 } // namespace content | 72 } // namespace content |
73 | 73 |
74 #endif // CONTENT_BROWSER_FILEAPI_STORAGE_HOST_H_ | 74 #endif // CONTENT_BROWSER_FILEAPI_BLOB_STORAGE_HOST_H_ |
OLD | NEW |