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