summaryrefslogtreecommitdiffstats
path: root/net/base/data_url.h
diff options
context:
space:
mode:
authordeanm@chromium.org <deanm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-03-17 15:35:18 +0000
committerdeanm@chromium.org <deanm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-03-17 15:35:18 +0000
commite2a23093adc9c1e0bb026a4a69455a9ddacc63ca (patch)
treed83ad8064d0f273104c961d6e8420033844ea6fd /net/base/data_url.h
parent0fb1960ad3ffa0df4e5c2ac46d0e240aa4e55108 (diff)
downloadchromium_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/base/data_url.h')
-rw-r--r--net/base/data_url.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/net/base/data_url.h b/net/base/data_url.h
index 2418f35..aa63d5c 100644
--- a/net/base/data_url.h
+++ b/net/base/data_url.h
@@ -2,6 +2,9 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
+#ifndef NET_BASE_DATA_URL_H_
+#define NET_BASE_DATA_URL_H_
+
#include <string>
class GURL;
@@ -40,3 +43,5 @@ class DataURL {
};
} // namespace net
+
+#endif // NET_BASE_DATA_URL_H_