| 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 #include "content/child/shared_memory_received_data_factory.h" | 5 #include "content/child/shared_memory_received_data_factory.h" |
| 6 | 6 |
| 7 #include <stddef.h> |
| 8 |
| 7 #include "base/tuple.h" | 9 #include "base/tuple.h" |
| 8 #include "content/common/resource_messages.h" | 10 #include "content/common/resource_messages.h" |
| 9 #include "ipc/ipc_message.h" | 11 #include "ipc/ipc_message.h" |
| 10 #include "ipc/ipc_sender.h" | 12 #include "ipc/ipc_sender.h" |
| 11 #include "testing/gmock/include/gmock/gmock.h" | 13 #include "testing/gmock/include/gmock/gmock.h" |
| 12 #include "testing/gtest/include/gtest/gtest.h" | 14 #include "testing/gtest/include/gtest/gtest.h" |
| 13 | 15 |
| 14 namespace content { | 16 namespace content { |
| 15 | 17 |
| 16 namespace { | 18 namespace { |
| (...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 215 checkpoint.Call(2); | 217 checkpoint.Call(2); |
| 216 factory_->Stop(); | 218 factory_->Stop(); |
| 217 data5.reset(); | 219 data5.reset(); |
| 218 data4.reset(); | 220 data4.reset(); |
| 219 checkpoint.Call(3); | 221 checkpoint.Call(3); |
| 220 } | 222 } |
| 221 | 223 |
| 222 } // namespace | 224 } // namespace |
| 223 | 225 |
| 224 } // namespace content | 226 } // namespace content |
| OLD | NEW |