| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 "ppapi/proxy/ppapi_proxy_test.h" | 5 #include "ppapi/proxy/ppapi_proxy_test.h" |
| 6 | 6 |
| 7 #include "base/message_loop_proxy.h" | 7 #include "base/message_loop_proxy.h" |
| 8 #include "base/observer_list.h" | 8 #include "base/observer_list.h" |
| 9 #include "ipc/ipc_sync_channel.h" | 9 #include "ipc/ipc_sync_channel.h" |
| 10 #include "ppapi/c/pp_errors.h" | 10 #include "ppapi/c/pp_errors.h" |
| (...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 217 } | 217 } |
| 218 | 218 |
| 219 uint32 PluginProxyTestHarness::PluginDelegateMock::Register( | 219 uint32 PluginProxyTestHarness::PluginDelegateMock::Register( |
| 220 PluginDispatcher* plugin_dispatcher) { | 220 PluginDispatcher* plugin_dispatcher) { |
| 221 return 0; | 221 return 0; |
| 222 } | 222 } |
| 223 | 223 |
| 224 void PluginProxyTestHarness::PluginDelegateMock::Unregister( | 224 void PluginProxyTestHarness::PluginDelegateMock::Unregister( |
| 225 uint32 plugin_dispatcher_id) { | 225 uint32 plugin_dispatcher_id) { |
| 226 } | 226 } |
| 227 | |
| 228 // PluginProxyTest ------------------------------------------------------------- | 227 // PluginProxyTest ------------------------------------------------------------- |
| 229 | 228 |
| 230 PluginProxyTest::PluginProxyTest() { | 229 PluginProxyTest::PluginProxyTest() { |
| 231 } | 230 } |
| 232 | 231 |
| 233 PluginProxyTest::~PluginProxyTest() { | 232 PluginProxyTest::~PluginProxyTest() { |
| 234 } | 233 } |
| 235 | 234 |
| 236 void PluginProxyTest::SetUp() { | 235 void PluginProxyTest::SetUp() { |
| 237 SetUpHarness(); | 236 SetUpHarness(); |
| (...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 367 remote_harness_torn_down.Wait(); | 366 remote_harness_torn_down.Wait(); |
| 368 | 367 |
| 369 local_harness_->TearDownHarness(); | 368 local_harness_->TearDownHarness(); |
| 370 | 369 |
| 371 io_thread_.Stop(); | 370 io_thread_.Stop(); |
| 372 } | 371 } |
| 373 | 372 |
| 374 | 373 |
| 375 } // namespace proxy | 374 } // namespace proxy |
| 376 } // namespace pp | 375 } // namespace pp |
| OLD | NEW |