summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordarin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2008-09-26 20:22:42 +0000
committerdarin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2008-09-26 20:22:42 +0000
commit101d5426056e8ad2a0871b5609438e86c6243fa7 (patch)
tree16ff05b939b1201caa37fd3681ffbf8da1cb9c66
parent6d687d7c0533e8de860ebfa80b18e85802dd9eb4 (diff)
downloadchromium_src-101d5426056e8ad2a0871b5609438e86c6243fa7.zip
chromium_src-101d5426056e8ad2a0871b5609438e86c6243fa7.tar.gz
chromium_src-101d5426056e8ad2a0871b5609438e86c6243fa7.tar.bz2
Fix some header guards that are named incorrectly.
R=tony Review URL: http://codereview.chromium.org/4306 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@2639 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--base/base_switches.h6
-rw-r--r--base/json_reader.h7
-rw-r--r--base/values.h7
3 files changed, 9 insertions, 11 deletions
diff --git a/base/base_switches.h b/base/base_switches.h
index 75d6e24..31879a1 100644
--- a/base/base_switches.h
+++ b/base/base_switches.h
@@ -4,8 +4,8 @@
// Defines all the "base" command-line switches.
-#ifndef BASE_SWITCHES_H__
-#define BASE_SWITCHES_H__
+#ifndef BASE_SWITCHES_H_
+#define BASE_SWITCHES_H_
namespace switches {
@@ -19,5 +19,5 @@ extern const wchar_t kEnableDCHECK[];
} // namespace switches
-#endif // CHROME_COMMON_CHROME_SWITCHES_H__
+#endif // BASE_SWITCHES_H_
diff --git a/base/json_reader.h b/base/json_reader.h
index 5d3c521..5e08bf0 100644
--- a/base/json_reader.h
+++ b/base/json_reader.h
@@ -27,8 +27,8 @@
// double quotes
// TODO(tc): Add an option to disable comment stripping
-#ifndef CHROME_COMMON_JSON_READER_H__
-#define CHROME_COMMON_JSON_READER_H__
+#ifndef BASE_JSON_READER_H_
+#define BASE_JSON_READER_H_
#include <string>
@@ -145,5 +145,4 @@ class JSONReader {
bool allow_trailing_comma_;
};
-#endif // CHROME_COMMON_JSON_READER_H__
-
+#endif // BASE_JSON_READER_H_
diff --git a/base/values.h b/base/values.h
index 9442844f..951776a 100644
--- a/base/values.h
+++ b/base/values.h
@@ -18,8 +18,8 @@
// the SetString() method would create the missing elements and attach them
// to root before attaching the homepage value.
-#ifndef CHROME_COMMON_VALUES_H__
-#define CHROME_COMMON_VALUES_H__
+#ifndef BASE_VALUES_H_
+#define BASE_VALUES_H_
#include <iterator>
#include <map>
@@ -356,5 +356,4 @@ class ValueSerializer {
virtual bool Deserialize(Value** root) = 0;
};
-#endif // CHROME_COMMON_VALUES_H__
-
+#endif // BASE_VALUES_H_