diff options
author | darin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-09-26 20:22:42 +0000 |
---|---|---|
committer | darin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-09-26 20:22:42 +0000 |
commit | 101d5426056e8ad2a0871b5609438e86c6243fa7 (patch) | |
tree | 16ff05b939b1201caa37fd3681ffbf8da1cb9c66 /base/values.h | |
parent | 6d687d7c0533e8de860ebfa80b18e85802dd9eb4 (diff) | |
download | chromium_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
Diffstat (limited to 'base/values.h')
-rw-r--r-- | base/values.h | 7 |
1 files changed, 3 insertions, 4 deletions
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_ |