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

Unified Diff: net/base/sys_addrinfo.h

Issue 2562113002: Fix header guards in //net. (Closed)
Patch Set: Created 4 years 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 | « net/base/sdch_observer.h ('k') | net/base/test_data_stream.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/base/sys_addrinfo.h
diff --git a/net/base/sys_addrinfo.h b/net/base/sys_addrinfo.h
index 78f491c02633cce9e06fe8746e4f7f0f24aae732..1799fc2dd1275d4200c3bbb83c786d010d59b37e 100644
--- a/net/base/sys_addrinfo.h
+++ b/net/base/sys_addrinfo.h
@@ -15,6 +15,9 @@
// Prefer including this file instead of directly writing the #if / #else,
// since it avoids duplicating the platform-specific selections.
+#ifndef NET_BASE_SYS_ADDRINFO_H_
+#define NET_BASE_SYS_ADDRINFO_H_
+
#include "build/build_config.h"
#if defined(OS_WIN)
@@ -24,3 +27,5 @@
#include <netinet/in.h>
#include <sys/socket.h>
#endif
+
+#endif // NET_BASE_SYS_ADDRINFO_H_
« no previous file with comments | « net/base/sdch_observer.h ('k') | net/base/test_data_stream.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698