diff options
author | agl@chromium.org <agl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-18 19:03:39 +0000 |
---|---|---|
committer | agl@chromium.org <agl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-18 19:03:39 +0000 |
commit | 3cb440e1585dd225c0c263893110edc8c75b2531 (patch) | |
tree | f7b9c23d52b635b45ac58bee75f361e693c0180a /base | |
parent | 2e2b2a1a1292f4b63dc63967951c733aec1951f0 (diff) | |
download | chromium_src-3cb440e1585dd225c0c263893110edc8c75b2531.zip chromium_src-3cb440e1585dd225c0c263893110edc8c75b2531.tar.gz chromium_src-3cb440e1585dd225c0c263893110edc8c75b2531.tar.bz2 |
Fix the include guards for scoped_handle
For a previous commit, the include guards couldn't be changed otherwise
a file move wasn't correctly detected.
Review URL: http://codereview.chromium.org/11236
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@5616 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base')
-rw-r--r-- | base/scoped_handle.h | 6 | ||||
-rw-r--r-- | base/scoped_handle_win.h | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/base/scoped_handle.h b/base/scoped_handle.h index 616a37d..02a907d 100644 --- a/base/scoped_handle.h +++ b/base/scoped_handle.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_SCOPED_HANDLE_FIXME_H__ -#define BASE_SCOPED_HANDLE_FIXME_H__ +#ifndef BASE_SCOPED_HANDLE_H__ +#define BASE_SCOPED_HANDLE_H__ #include "base/basictypes.h" @@ -49,4 +49,4 @@ class ScopedStdioHandle { DISALLOW_EVIL_CONSTRUCTORS(ScopedStdioHandle); }; -#endif // BASE_SCOPED_HANDLE_FIXME_H__ +#endif // BASE_SCOPED_HANDLE_H__ diff --git a/base/scoped_handle_win.h b/base/scoped_handle_win.h index 8ed568d..c033081 100644 --- a/base/scoped_handle_win.h +++ b/base/scoped_handle_win.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_SCOPED_HANDLE_H__ -#define BASE_SCOPED_HANDLE_H__ +#ifndef BASE_SCOPED_HANDLE_WIN_H__ +#define BASE_SCOPED_HANDLE_WIN_H__ #include <windows.h> @@ -205,5 +205,5 @@ class ScopedHGlobal { DISALLOW_EVIL_CONSTRUCTORS(ScopedHGlobal); }; -#endif // BASE_SCOPED_HANDLE_H__ +#endif // BASE_SCOPED_HANDLE_WIN_H__ |