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

Unified Diff: ppapi/api/private/ppb_tcp_socket_private.idl

Issue 17615004: Add "PRIVATE" to the enum names of some private Pepper networking APIs: (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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 side-by-side diff with in-line comments
Download patch
Index: ppapi/api/private/ppb_tcp_socket_private.idl
diff --git a/ppapi/api/private/ppb_tcp_socket_private.idl b/ppapi/api/private/ppb_tcp_socket_private.idl
index 5c5d54af41e0526d017040a67150978c9e1dd608..b9913bccfe84412260af3bdb21cf9bac4280e793 100644
--- a/ppapi/api/private/ppb_tcp_socket_private.idl
+++ b/ppapi/api/private/ppb_tcp_socket_private.idl
@@ -16,12 +16,12 @@ label Chrome {
[assert_size(4)]
enum PP_TCPSocketOption_Private {
// Special value used for testing. Guaranteed to fail SetOption().
- PP_TCPSOCKETOPTION_INVALID = 0,
+ PP_TCPSOCKETOPTION_PRIVATE_INVALID = 0,
// Disable coalescing of small writes to make TCP segments, and instead
// deliver data immediately. For SSL sockets, this option must be set before
// SSLHandshake() is called. Value type is PP_VARTYPE_BOOL.
- PP_TCPSOCKETOPTION_NO_DELAY = 1
+ PP_TCPSOCKETOPTION_PRIVATE_NO_DELAY = 1
};
/**

Powered by Google App Engine
This is Rietveld 408576698