Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(94)

Side by Side Diff: content/renderer/pepper_plugin_delegate_impl.h

Issue 9212047: Add GetBoundAddress to PPB_UDPSocket_Private (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: fix build error after rebase Created 8 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 396 matching lines...) Expand 10 before | Expand all | Expand 10 after
407 void OnTCPSocketReadACK(uint32 plugin_dispatcher_id, 407 void OnTCPSocketReadACK(uint32 plugin_dispatcher_id,
408 uint32 socket_id, 408 uint32 socket_id,
409 bool succeeded, 409 bool succeeded,
410 const std::string& data); 410 const std::string& data);
411 void OnTCPSocketWriteACK(uint32 plugin_dispatcher_id, 411 void OnTCPSocketWriteACK(uint32 plugin_dispatcher_id,
412 uint32 socket_id, 412 uint32 socket_id,
413 bool succeeded, 413 bool succeeded,
414 int32_t bytes_written); 414 int32_t bytes_written);
415 void OnUDPSocketBindACK(uint32 plugin_dispatcher_id, 415 void OnUDPSocketBindACK(uint32 plugin_dispatcher_id,
416 uint32 socket_id, 416 uint32 socket_id,
417 bool succeeded); 417 bool succeeded,
418 const PP_NetAddress_Private& addr);
418 void OnUDPSocketSendToACK(uint32 plugin_dispatcher_id, 419 void OnUDPSocketSendToACK(uint32 plugin_dispatcher_id,
419 uint32 socket_id, 420 uint32 socket_id,
420 bool succeeded, 421 bool succeeded,
421 int32_t bytes_written); 422 int32_t bytes_written);
422 void OnUDPSocketRecvFromACK(uint32 plugin_dispatcher_id, 423 void OnUDPSocketRecvFromACK(uint32 plugin_dispatcher_id,
423 uint32 socket_id, 424 uint32 socket_id,
424 bool succeeded, 425 bool succeeded,
425 const std::string& data, 426 const std::string& data,
426 const PP_NetAddress_Private& addr); 427 const PP_NetAddress_Private& addr);
427 428
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
498 webkit::ppapi::PluginInstance* last_mouse_event_target_; 499 webkit::ppapi::PluginInstance* last_mouse_event_target_;
499 500
500 scoped_ptr<content::GamepadSharedMemoryReader> gamepad_shared_memory_reader_; 501 scoped_ptr<content::GamepadSharedMemoryReader> gamepad_shared_memory_reader_;
501 502
502 scoped_ptr<DeviceEnumerationEventHandler> device_enumeration_event_handler_; 503 scoped_ptr<DeviceEnumerationEventHandler> device_enumeration_event_handler_;
503 504
504 DISALLOW_COPY_AND_ASSIGN(PepperPluginDelegateImpl); 505 DISALLOW_COPY_AND_ASSIGN(PepperPluginDelegateImpl);
505 }; 506 };
506 507
507 #endif // CONTENT_RENDERER_PEPPER_PLUGIN_DELEGATE_IMPL_H_ 508 #endif // CONTENT_RENDERER_PEPPER_PLUGIN_DELEGATE_IMPL_H_
OLDNEW
« no previous file with comments | « content/browser/renderer_host/pepper_udp_socket.cc ('k') | content/renderer/pepper_plugin_delegate_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698