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 #include "base/basictypes.h" | 5 #include <stddef.h> |
| 6 #include <stdint.h> |
| 7 |
6 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "base/macros.h" |
7 #include "ppapi/c/pp_errors.h" | 10 #include "ppapi/c/pp_errors.h" |
8 #include "ppapi/proxy/connection.h" | 11 #include "ppapi/proxy/connection.h" |
9 #include "ppapi/proxy/device_enumeration_resource_helper.h" | 12 #include "ppapi/proxy/device_enumeration_resource_helper.h" |
10 #include "ppapi/proxy/plugin_message_filter.h" | 13 #include "ppapi/proxy/plugin_message_filter.h" |
11 #include "ppapi/proxy/plugin_resource.h" | 14 #include "ppapi/proxy/plugin_resource.h" |
12 #include "ppapi/proxy/plugin_resource_tracker.h" | 15 #include "ppapi/proxy/plugin_resource_tracker.h" |
13 #include "ppapi/proxy/plugin_var_tracker.h" | 16 #include "ppapi/proxy/plugin_var_tracker.h" |
14 #include "ppapi/proxy/ppapi_message_utils.h" | 17 #include "ppapi/proxy/ppapi_message_utils.h" |
15 #include "ppapi/proxy/ppapi_messages.h" | 18 #include "ppapi/proxy/ppapi_messages.h" |
16 #include "ppapi/proxy/ppapi_proxy_test.h" | 19 #include "ppapi/proxy/ppapi_proxy_test.h" |
(...skipping 378 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
395 PluginMessageFilter::DispatchResourceReplyForTest( | 398 PluginMessageFilter::DispatchResourceReplyForTest( |
396 reply_params, | 399 reply_params, |
397 PpapiPluginMsg_DeviceEnumeration_NotifyDeviceChange( | 400 PpapiPluginMsg_DeviceEnumeration_NotifyDeviceChange( |
398 callback_id2, data)); | 401 callback_id2, data)); |
399 } | 402 } |
400 EXPECT_FALSE(helper2.called()); | 403 EXPECT_FALSE(helper2.called()); |
401 } | 404 } |
402 | 405 |
403 } // namespace proxy | 406 } // namespace proxy |
404 } // namespace ppapi | 407 } // namespace ppapi |
OLD | NEW |