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

Unified Diff: webrtc/base/nattypes.h

Issue 2877023002: Move webrtc/{base => rtc_base} (Closed)
Patch Set: update presubmit.py and DEPS include rules Created 3 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
« no previous file with comments | « webrtc/base/natsocketfactory.cc ('k') | webrtc/base/nattypes.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/base/nattypes.h
diff --git a/webrtc/base/nattypes.h b/webrtc/base/nattypes.h
index 27e4b2f4575ef9d7c24a716bbe23daeead2cebf4..001f57fe7d3264f642517cde8c97dfa32cc0567d 100644
--- a/webrtc/base/nattypes.h
+++ b/webrtc/base/nattypes.h
@@ -8,40 +8,12 @@
* be found in the AUTHORS file in the root of the source tree.
*/
-#ifndef WEBRTC_BASE_NATTYPE_H__
-#define WEBRTC_BASE_NATTYPE_H__
+#ifndef WEBRTC_BASE_NATTYPES_H_
+#define WEBRTC_BASE_NATTYPES_H_
-namespace rtc {
-/* Identifies each type of NAT that can be simulated. */
-enum NATType {
- NAT_OPEN_CONE,
- NAT_ADDR_RESTRICTED,
- NAT_PORT_RESTRICTED,
- NAT_SYMMETRIC
-};
+// This header is deprecated and is just left here temporarily during
+// refactoring. See https://bugs.webrtc.org/7634 for more details.
+#include "webrtc/rtc_base/nattypes.h"
-// Implements the rules for each specific type of NAT.
-class NAT {
-public:
- virtual ~NAT() { }
-
- // Determines whether this NAT uses both source and destination address when
- // checking whether a mapping already exists.
- virtual bool IsSymmetric() = 0;
-
- // Determines whether this NAT drops packets received from a different IP
- // the one last sent to.
- virtual bool FiltersIP() = 0;
-
- // Determines whether this NAT drops packets received from a different port
- // the one last sent to.
- virtual bool FiltersPort() = 0;
-
- // Returns an implementation of the given type of NAT.
- static NAT* Create(NATType type);
-};
-
-} // namespace rtc
-
-#endif // WEBRTC_BASE_NATTYPE_H__
+#endif // WEBRTC_BASE_NATTYPES_H_
« no previous file with comments | « webrtc/base/natsocketfactory.cc ('k') | webrtc/base/nattypes.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698