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

Unified Diff: ppapi/cpp/private/net_address_private.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/net_address_private.h
diff --git a/ppapi/cpp/private/net_address_private.h b/ppapi/cpp/private/net_address_private.h
new file mode 100644
index 0000000000000000000000000000000000000000..cc60a1b1777c4b5cdb5f2364aab52ab7232fe3f5
--- /dev/null
+++ b/ppapi/cpp/private/net_address_private.h
@@ -0,0 +1,32 @@
+// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef PPAPI_CPP_PRIVATE_NET_ADDRESS_PRIVATE_H_
+#define PPAPI_CPP_PRIVATE_NET_ADDRESS_PRIVATE_H_
+
+#include <string>
+
+#include "ppapi/c/pp_stdint.h"
+
+struct PP_NetAddress_Private;
+
+namespace pp {
+
+class NetAddress {
+ public:
+ static bool AreEqual(const PP_NetAddress_Private& addr1,
+ const PP_NetAddress_Private& addr2);
+ static bool AreHostsEqual(const PP_NetAddress_Private& addr1,
+ const PP_NetAddress_Private& addr2);
+ static std::string Describe(const PP_NetAddress_Private& addr,
+ bool include_port);
+ static bool ReplacePort(const PP_NetAddress_Private& addr_in,
+ uint16_t port,
+ PP_NetAddress_Private* addr_out);
+ static void GetAnyAddress(bool is_ipv6, PP_NetAddress_Private* addr);
+};
+
+} // namespace pp
+
+#endif // PPAPI_CPP_PRIVATE_NET_ADDRESS_PRIVATE_H_

Powered by Google App Engine
This is Rietveld 408576698