diff options
author | deanm@chromium.org <deanm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-17 15:35:18 +0000 |
---|---|---|
committer | deanm@chromium.org <deanm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-17 15:35:18 +0000 |
commit | e2a23093adc9c1e0bb026a4a69455a9ddacc63ca (patch) | |
tree | d83ad8064d0f273104c961d6e8420033844ea6fd /net/http | |
parent | 0fb1960ad3ffa0df4e5c2ac46d0e240aa4e55108 (diff) | |
download | chromium_src-e2a23093adc9c1e0bb026a4a69455a9ddacc63ca.zip chromium_src-e2a23093adc9c1e0bb026a4a69455a9ddacc63ca.tar.gz chromium_src-e2a23093adc9c1e0bb026a4a69455a9ddacc63ca.tar.bz2 |
Fix incorrect include guards in net/, where the guard didn't match the filename.
Also add a guard to data_url.h which was missing a guard.
Review URL: http://codereview.chromium.org/42282
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11865 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/http')
-rw-r--r-- | net/http/http_response_headers.h | 6 | ||||
-rw-r--r-- | net/http/http_version.h | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/net/http/http_response_headers.h b/net/http/http_response_headers.h index 1d15911..e9b2c4b 100644 --- a/net/http/http_response_headers.h +++ b/net/http/http_response_headers.h @@ -2,8 +2,8 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#ifndef NET_HTTP_RESPONSE_HEADERS_H_ -#define NET_HTTP_RESPONSE_HEADERS_H_ +#ifndef NET_HTTP_HTTP_RESPONSE_HEADERS_H_ +#define NET_HTTP_HTTP_RESPONSE_HEADERS_H_ #include <string> #include <vector> @@ -304,4 +304,4 @@ class HttpResponseHeaders : } // namespace net -#endif // NET_HTTP_RESPONSE_HEADERS_H_ +#endif // NET_HTTP_HTTP_RESPONSE_HEADERS_H_ diff --git a/net/http/http_version.h b/net/http/http_version.h index f6fe70b..127e711 100644 --- a/net/http/http_version.h +++ b/net/http/http_version.h @@ -2,8 +2,8 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#ifndef NET_HTTP_VERSION_H_ -#define NET_HTTP_VERSION_H_ +#ifndef NET_HTTP_HTTP_VERSION_H_ +#define NET_HTTP_HTTP_VERSION_H_ #include "base/basictypes.h" @@ -55,4 +55,4 @@ class HttpVersion { } // namespace net -#endif // NET_HTTP_VERSION_H_ +#endif // NET_HTTP_HTTP_VERSION_H_ |