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

Unified Diff: ppapi/cpp/private/flash_udp_socket.h

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/cpp/private/flash_udp_socket.h
diff --git a/ppapi/cpp/private/flash_udp_socket.h b/ppapi/cpp/private/flash_udp_socket.h
index e472c00774b16e12e9646ad478239dd9a4ecc26e..b4b223e915567cc537adb593d8526736aa5f6fdd 100644
--- a/ppapi/cpp/private/flash_udp_socket.h
+++ b/ppapi/cpp/private/flash_udp_socket.h
@@ -20,15 +20,15 @@ class UDPSocket : public Resource {
public:
explicit UDPSocket(Instance* instance);
- int32_t Bind(const PP_Flash_NetAddress* addr,
+ int32_t Bind(const PP_NetAddress_Private* addr,
const CompletionCallback& callback);
int32_t RecvFrom(char* buffer,
int32_t num_bytes,
const CompletionCallback& callback);
- bool GetRecvFromAddress(PP_Flash_NetAddress* addr);
+ bool GetRecvFromAddress(PP_NetAddress_Private* addr);
int32_t SendTo(const char* buffer,
int32_t num_bytes,
- const PP_Flash_NetAddress* addr,
+ const PP_NetAddress_Private* addr,
const CompletionCallback& callback);
void Close();
};

Powered by Google App Engine
This is Rietveld 408576698