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