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 CONTENT_BROWSER_CACHE_STORAGE_CACHE_STORAGE_DISPATCHER_HOST_H_ | 5 #ifndef CONTENT_BROWSER_CACHE_STORAGE_CACHE_STORAGE_DISPATCHER_HOST_H_ |
6 #define CONTENT_BROWSER_CACHE_STORAGE_CACHE_STORAGE_DISPATCHER_HOST_H_ | 6 #define CONTENT_BROWSER_CACHE_STORAGE_CACHE_STORAGE_DISPATCHER_HOST_H_ |
7 | 7 |
| 8 #include <stdint.h> |
| 9 |
8 #include <list> | 10 #include <list> |
9 | 11 |
| 12 #include "base/macros.h" |
10 #include "content/browser/cache_storage/cache_storage.h" | 13 #include "content/browser/cache_storage/cache_storage.h" |
11 #include "content/public/browser/browser_message_filter.h" | 14 #include "content/public/browser/browser_message_filter.h" |
12 | 15 |
13 namespace content { | 16 namespace content { |
14 | 17 |
15 class CacheStorageContextImpl; | 18 class CacheStorageContextImpl; |
16 | 19 |
17 // Handles Cache Storage related messages sent to the browser process from | 20 // Handles Cache Storage related messages sent to the browser process from |
18 // child processes. One host instance exists per child process. All | 21 // child processes. One host instance exists per child process. All |
19 // messages are processed on the IO thread. | 22 // messages are processed on the IO thread. |
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
159 UUIDToBlobDataHandleList blob_handle_store_; | 162 UUIDToBlobDataHandleList blob_handle_store_; |
160 | 163 |
161 scoped_refptr<CacheStorageContextImpl> context_; | 164 scoped_refptr<CacheStorageContextImpl> context_; |
162 | 165 |
163 DISALLOW_COPY_AND_ASSIGN(CacheStorageDispatcherHost); | 166 DISALLOW_COPY_AND_ASSIGN(CacheStorageDispatcherHost); |
164 }; | 167 }; |
165 | 168 |
166 } // namespace content | 169 } // namespace content |
167 | 170 |
168 #endif // CONTENT_BROWSER_CACHE_STORAGE_CACHE_STORAGE_DISPATCHER_HOST_H_ | 171 #endif // CONTENT_BROWSER_CACHE_STORAGE_CACHE_STORAGE_DISPATCHER_HOST_H_ |
OLD | NEW |