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

Unified Diff: ppapi/thunk/ppb_flash_tcp_socket_thunk.cc

Issue 8511032: Make the Pepper Flash net address just private, not Flash-specific. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month 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 side-by-side diff with in-line comments
Download patch
Index: ppapi/thunk/ppb_flash_tcp_socket_thunk.cc
diff --git a/ppapi/thunk/ppb_flash_tcp_socket_thunk.cc b/ppapi/thunk/ppb_flash_tcp_socket_thunk.cc
index a1ce67ea31ee7640d1761a1c84ae44dd8b7f7cba..de21042df0d1a060e5422c3667f56209351754e6 100644
--- a/ppapi/thunk/ppb_flash_tcp_socket_thunk.cc
+++ b/ppapi/thunk/ppb_flash_tcp_socket_thunk.cc
@@ -40,7 +40,7 @@ int32_t Connect(PP_Resource tcp_socket,
}
int32_t ConnectWithNetAddress(PP_Resource tcp_socket,
- const PP_Flash_NetAddress* addr,
+ const PP_NetAddress_Private* addr,
PP_CompletionCallback callback) {
EnterResource<PPB_Flash_TCPSocket_API> enter(tcp_socket, true);
if (enter.failed())
@@ -50,7 +50,7 @@ int32_t ConnectWithNetAddress(PP_Resource tcp_socket,
}
PP_Bool GetLocalAddress(PP_Resource tcp_socket,
- PP_Flash_NetAddress* local_addr) {
+ PP_NetAddress_Private* local_addr) {
EnterResource<PPB_Flash_TCPSocket_API> enter(tcp_socket, true);
if (enter.failed())
return PP_FALSE;
@@ -58,7 +58,7 @@ PP_Bool GetLocalAddress(PP_Resource tcp_socket,
}
PP_Bool GetRemoteAddress(PP_Resource tcp_socket,
- PP_Flash_NetAddress* remote_addr) {
+ PP_NetAddress_Private* remote_addr) {
EnterResource<PPB_Flash_TCPSocket_API> enter(tcp_socket, true);
if (enter.failed())
return PP_FALSE;

Powered by Google App Engine
This is Rietveld 408576698