diff options
author | deanm@chromium.org <deanm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-17 12:47:14 +0000 |
---|---|---|
committer | deanm@chromium.org <deanm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-17 12:47:14 +0000 |
commit | 71a76d032e2f837630981952e497dfb7c9533136 (patch) | |
tree | d0b9f08631a002ea9beed0f0345dd416c614b70d /base/perftimer.h | |
parent | f85d541dfff6b40ede739d3c0c3094ba420bafa2 (diff) | |
download | chromium_src-71a76d032e2f837630981952e497dfb7c9533136.zip chromium_src-71a76d032e2f837630981952e497dfb7c9533136.tar.gz chromium_src-71a76d032e2f837630981952e497dfb7c9533136.tar.bz2 |
Fix incorrect guards in base/.
This doesn't change _H_ vs _H__, it just fixes guards that didn't properly match the filename. Adds a guard to clipboard_util.h which was previously guardless.
Review URL: http://codereview.chromium.org/42278
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11856 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/perftimer.h')
-rw-r--r-- | base/perftimer.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/base/perftimer.h b/base/perftimer.h index 81009dd..6274fee 100644 --- a/base/perftimer.h +++ b/base/perftimer.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 BASE_PERFTTIMER_H_ -#define BASE_PERFTTIMER_H_ +#ifndef BASE_PERFTIMER_H_ +#define BASE_PERFTIMER_H_ #include <string> #include "base/basictypes.h" @@ -78,4 +78,4 @@ class PerfTimeLogger { PerfTimer timer_; }; -#endif // BASE_PERFTTIMER_H_ +#endif // BASE_PERFTIMER_H_ |