| 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 CONTENT_BROWSER_FILEAPI_FILEAPI_MESSAGE_FILTER_H_ | 5 #ifndef CONTENT_BROWSER_FILEAPI_FILEAPI_MESSAGE_FILTER_H_ |
| 6 #define CONTENT_BROWSER_FILEAPI_FILEAPI_MESSAGE_FILTER_H_ | 6 #define CONTENT_BROWSER_FILEAPI_FILEAPI_MESSAGE_FILTER_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/callback.h" | 12 #include "base/callback.h" |
| 13 #include "base/containers/hash_tables.h" |
| 13 #include "base/files/file_util_proxy.h" | 14 #include "base/files/file_util_proxy.h" |
| 14 #include "base/hash_tables.h" | |
| 15 #include "base/id_map.h" | 15 #include "base/id_map.h" |
| 16 #include "base/platform_file.h" | 16 #include "base/platform_file.h" |
| 17 #include "base/shared_memory.h" | 17 #include "base/shared_memory.h" |
| 18 #include "content/public/browser/browser_message_filter.h" | 18 #include "content/public/browser/browser_message_filter.h" |
| 19 #include "webkit/browser/fileapi/file_system_operation_runner.h" | 19 #include "webkit/browser/fileapi/file_system_operation_runner.h" |
| 20 #include "webkit/common/blob/blob_data.h" | 20 #include "webkit/common/blob/blob_data.h" |
| 21 #include "webkit/common/fileapi/file_system_types.h" | 21 #include "webkit/common/fileapi/file_system_types.h" |
| 22 #include "webkit/common/quota/quota_types.h" | 22 #include "webkit/common/quota/quota_types.h" |
| 23 | 23 |
| 24 class GURL; | 24 class GURL; |
| (...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 201 // Need to close all of them when the renderer process dies. | 201 // Need to close all of them when the renderer process dies. |
| 202 typedef IDMap<base::Closure, IDMapOwnPointer> OnCloseCallbackMap; | 202 typedef IDMap<base::Closure, IDMapOwnPointer> OnCloseCallbackMap; |
| 203 OnCloseCallbackMap on_close_callbacks_; | 203 OnCloseCallbackMap on_close_callbacks_; |
| 204 | 204 |
| 205 DISALLOW_COPY_AND_ASSIGN(FileAPIMessageFilter); | 205 DISALLOW_COPY_AND_ASSIGN(FileAPIMessageFilter); |
| 206 }; | 206 }; |
| 207 | 207 |
| 208 } // namespace content | 208 } // namespace content |
| 209 | 209 |
| 210 #endif // CONTENT_BROWSER_FILEAPI_FILEAPI_MESSAGE_FILTER_H_ | 210 #endif // CONTENT_BROWSER_FILEAPI_FILEAPI_MESSAGE_FILTER_H_ |
| OLD | NEW |