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

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: a few small changes after self review Created 8 years, 11 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 397 matching lines...) Expand 10 before | Expand all | Expand 10 after
408 void OnTCPSocketReadACK(uint32 plugin_dispatcher_id, 408 void OnTCPSocketReadACK(uint32 plugin_dispatcher_id,
409 uint32 socket_id, 409 uint32 socket_id,
410 bool succeeded, 410 bool succeeded,
411 const std::string& data); 411 const std::string& data);
412 void OnTCPSocketWriteACK(uint32 plugin_dispatcher_id, 412 void OnTCPSocketWriteACK(uint32 plugin_dispatcher_id,
413 uint32 socket_id, 413 uint32 socket_id,
414 bool succeeded, 414 bool succeeded,
415 int32_t bytes_written); 415 int32_t bytes_written);
416 void OnUDPSocketBindACK(uint32 plugin_dispatcher_id, 416 void OnUDPSocketBindACK(uint32 plugin_dispatcher_id,
417 uint32 socket_id, 417 uint32 socket_id,
418 bool succeeded); 418 bool succeeded,
419 uint32 bound_port);
419 void OnUDPSocketSendToACK(uint32 plugin_dispatcher_id, 420 void OnUDPSocketSendToACK(uint32 plugin_dispatcher_id,
420 uint32 socket_id, 421 uint32 socket_id,
421 bool succeeded, 422 bool succeeded,
422 int32_t bytes_written); 423 int32_t bytes_written);
423 void OnUDPSocketRecvFromACK(uint32 plugin_dispatcher_id, 424 void OnUDPSocketRecvFromACK(uint32 plugin_dispatcher_id,
424 uint32 socket_id, 425 uint32 socket_id,
425 bool succeeded, 426 bool succeeded,
426 const std::string& data, 427 const std::string& data,
427 const PP_NetAddress_Private& addr); 428 const PP_NetAddress_Private& addr);
428 429
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
501 // |last_mouse_event_target_| is not owned by this class. We can know about 502 // |last_mouse_event_target_| is not owned by this class. We can know about
502 // when it is destroyed via InstanceDeleted(). 503 // when it is destroyed via InstanceDeleted().
503 webkit::ppapi::PluginInstance* last_mouse_event_target_; 504 webkit::ppapi::PluginInstance* last_mouse_event_target_;
504 505
505 scoped_ptr<content::GamepadSharedMemoryReader> gamepad_shared_memory_reader_; 506 scoped_ptr<content::GamepadSharedMemoryReader> gamepad_shared_memory_reader_;
506 507
507 DISALLOW_COPY_AND_ASSIGN(PepperPluginDelegateImpl); 508 DISALLOW_COPY_AND_ASSIGN(PepperPluginDelegateImpl);
508 }; 509 };
509 510
510 #endif // CONTENT_RENDERER_PEPPER_PLUGIN_DELEGATE_IMPL_H_ 511 #endif // CONTENT_RENDERER_PEPPER_PLUGIN_DELEGATE_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698