| 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_CHILD_THREADEDDATAPROVIDER_IMPL_H_ | 5 #ifndef CONTENT_CHILD_THREADEDDATAPROVIDER_IMPL_H_ |
| 6 #define CONTENT_CHILD_THREADEDDATAPROVIDER_IMPL_H_ | 6 #define CONTENT_CHILD_THREADEDDATAPROVIDER_IMPL_H_ |
| 7 | 7 |
| 8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "base/memory/linked_ptr.h" | 9 #include "base/memory/linked_ptr.h" |
| 10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
| 11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
| 12 #include "base/memory/shared_memory.h" | 12 #include "base/memory/shared_memory.h" |
| 13 #include "base/memory/weak_ptr.h" | 13 #include "base/memory/weak_ptr.h" |
| 14 #include "ipc/ipc_channel.h" | 14 #include "ipc/ipc_sync_channel.h" |
| 15 #include "ipc/message_filter.h" | 15 #include "ipc/message_filter.h" |
| 16 | 16 |
| 17 namespace blink { | 17 namespace blink { |
| 18 class WebThreadedDataReceiver; | 18 class WebThreadedDataReceiver; |
| 19 } | 19 } |
| 20 | 20 |
| 21 namespace IPC { | 21 namespace IPC { |
| 22 class SyncChannel; | 22 class SyncChannel; |
| 23 } | 23 } |
| 24 | 24 |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 int length; | 74 int length; |
| 75 }; | 75 }; |
| 76 std::vector<QueuedSharedMemoryData> queued_data_; | 76 std::vector<QueuedSharedMemoryData> queued_data_; |
| 77 | 77 |
| 78 DISALLOW_COPY_AND_ASSIGN(ThreadedDataProvider); | 78 DISALLOW_COPY_AND_ASSIGN(ThreadedDataProvider); |
| 79 }; | 79 }; |
| 80 | 80 |
| 81 } // namespace content | 81 } // namespace content |
| 82 | 82 |
| 83 #endif // CONTENT_CHILD_THREADEDDATAPROVIDER_IMPL_H_ | 83 #endif // CONTENT_CHILD_THREADEDDATAPROVIDER_IMPL_H_ |
| OLD | NEW |