From 71a76d032e2f837630981952e497dfb7c9533136 Mon Sep 17 00:00:00 2001 From: "deanm@chromium.org" Date: Tue, 17 Mar 2009 12:47:14 +0000 Subject: 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 --- base/thread_collision_warner.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'base/thread_collision_warner.h') diff --git a/base/thread_collision_warner.h b/base/thread_collision_warner.h index ed75732..509ee5d 100644 --- a/base/thread_collision_warner.h +++ b/base/thread_collision_warner.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 THREAD_COLLISION_WARNER_H_ -#define THREAD_COLLISION_WARNER_H_ +#ifndef BASE_THREAD_COLLISION_WARNER_H_ +#define BASE_THREAD_COLLISION_WARNER_H_ #include @@ -239,4 +239,4 @@ class ThreadCollisionWarner { } // namespace base -#endif // THREAD_COLLISION_WARNER_H_ +#endif // BASE_THREAD_COLLISION_WARNER_H_ -- cgit v1.1