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_RENDERER_PEPPER_PLUGIN_DELEGATE_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_PEPPER_PLUGIN_DELEGATE_IMPL_H_ |
6 #define CONTENT_RENDERER_PEPPER_PLUGIN_DELEGATE_IMPL_H_ | 6 #define CONTENT_RENDERER_PEPPER_PLUGIN_DELEGATE_IMPL_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <map> | 9 #include <map> |
10 #include <set> | 10 #include <set> |
(...skipping 391 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
402 void OnTCPSocketReadACK(uint32 plugin_dispatcher_id, | 402 void OnTCPSocketReadACK(uint32 plugin_dispatcher_id, |
403 uint32 socket_id, | 403 uint32 socket_id, |
404 bool succeeded, | 404 bool succeeded, |
405 const std::string& data); | 405 const std::string& data); |
406 void OnTCPSocketWriteACK(uint32 plugin_dispatcher_id, | 406 void OnTCPSocketWriteACK(uint32 plugin_dispatcher_id, |
407 uint32 socket_id, | 407 uint32 socket_id, |
408 bool succeeded, | 408 bool succeeded, |
409 int32_t bytes_written); | 409 int32_t bytes_written); |
410 void OnUDPSocketBindACK(uint32 plugin_dispatcher_id, | 410 void OnUDPSocketBindACK(uint32 plugin_dispatcher_id, |
411 uint32 socket_id, | 411 uint32 socket_id, |
412 bool succeeded); | 412 bool succeeded, |
| 413 const PP_NetAddress_Private& addr); |
413 void OnUDPSocketSendToACK(uint32 plugin_dispatcher_id, | 414 void OnUDPSocketSendToACK(uint32 plugin_dispatcher_id, |
414 uint32 socket_id, | 415 uint32 socket_id, |
415 bool succeeded, | 416 bool succeeded, |
416 int32_t bytes_written); | 417 int32_t bytes_written); |
417 void OnUDPSocketRecvFromACK(uint32 plugin_dispatcher_id, | 418 void OnUDPSocketRecvFromACK(uint32 plugin_dispatcher_id, |
418 uint32 socket_id, | 419 uint32 socket_id, |
419 bool succeeded, | 420 bool succeeded, |
420 const std::string& data, | 421 const std::string& data, |
421 const PP_NetAddress_Private& addr); | 422 const PP_NetAddress_Private& addr); |
422 | 423 |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
483 // |last_mouse_event_target_| is not owned by this class. We can know about | 484 // |last_mouse_event_target_| is not owned by this class. We can know about |
484 // when it is destroyed via InstanceDeleted(). | 485 // when it is destroyed via InstanceDeleted(). |
485 webkit::ppapi::PluginInstance* last_mouse_event_target_; | 486 webkit::ppapi::PluginInstance* last_mouse_event_target_; |
486 | 487 |
487 scoped_ptr<content::GamepadSharedMemoryReader> gamepad_shared_memory_reader_; | 488 scoped_ptr<content::GamepadSharedMemoryReader> gamepad_shared_memory_reader_; |
488 | 489 |
489 DISALLOW_COPY_AND_ASSIGN(PepperPluginDelegateImpl); | 490 DISALLOW_COPY_AND_ASSIGN(PepperPluginDelegateImpl); |
490 }; | 491 }; |
491 | 492 |
492 #endif // CONTENT_RENDERER_PEPPER_PLUGIN_DELEGATE_IMPL_H_ | 493 #endif // CONTENT_RENDERER_PEPPER_PLUGIN_DELEGATE_IMPL_H_ |
OLD | NEW |