summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordeanm@chromium.org <deanm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-03-17 16:09:29 +0000
committerdeanm@chromium.org <deanm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-03-17 16:09:29 +0000
commit7bea0ed3ca62aaf5e1bca275913e27d836d126eb (patch)
tree6e510f4d1cb143de6c9c6e2294bd46a45a076602
parent8c30a48a97f132e99a1b07df90a231eabda4c9ed (diff)
downloadchromium_src-7bea0ed3ca62aaf5e1bca275913e27d836d126eb.zip
chromium_src-7bea0ed3ca62aaf5e1bca275913e27d836d126eb.tar.gz
chromium_src-7bea0ed3ca62aaf5e1bca275913e27d836d126eb.tar.bz2
Fix incorrect include guards in sandbox/. Guards now match their filename.
Review URL: http://codereview.chromium.org/48073 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11868 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--sandbox/src/acl.h2
-rw-r--r--sandbox/src/job.h2
-rw-r--r--sandbox/src/security_level.h6
-rw-r--r--sandbox/src/sync_dispatcher.h6
-rw-r--r--sandbox/tests/validation_tests/stdafx.h6
5 files changed, 11 insertions, 11 deletions
diff --git a/sandbox/src/acl.h b/sandbox/src/acl.h
index ffda40a..c71e51b 100644
--- a/sandbox/src/acl.h
+++ b/sandbox/src/acl.h
@@ -37,4 +37,4 @@ bool AddKnownSidToKernelObject(HANDLE object, const Sid& sid,
} // namespace sandbox
-#endif // SANDBOX_SRC_ACL_H
+#endif // SANDBOX_SRC_ACL_H_
diff --git a/sandbox/src/job.h b/sandbox/src/job.h
index e8ec5ea..3824b87 100644
--- a/sandbox/src/job.h
+++ b/sandbox/src/job.h
@@ -59,4 +59,4 @@ class Job {
} // namespace sandbox
-#endif // SANDBOX_SRC_JOB_H
+#endif // SANDBOX_SRC_JOB_H_
diff --git a/sandbox/src/security_level.h b/sandbox/src/security_level.h
index 659cadb..d83514a 100644
--- a/sandbox/src/security_level.h
+++ b/sandbox/src/security_level.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 SANDBOX_SRC_RESTRICTED_SECURITY_LEVEL_H__
-#define SANDBOX_SRC_RESTRICTED_SECURITY_LEVEL_H__
+#ifndef SANDBOX_SRC_SECURITY_LEVEL_H_
+#define SANDBOX_SRC_SECURITY_LEVEL_H_
namespace sandbox {
@@ -123,4 +123,4 @@ enum JobLevel {
} // namespace sandbox
-#endif // SANDBOX_SRC_RESTRICTED_SECURITY_LEVEL_H__
+#endif // SANDBOX_SRC_SECURITY_LEVEL_H_
diff --git a/sandbox/src/sync_dispatcher.h b/sandbox/src/sync_dispatcher.h
index 2f4e685..8bcfcf4 100644
--- a/sandbox/src/sync_dispatcher.h
+++ b/sandbox/src/sync_dispatcher.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 SANDBOX_SRC_SYNC_DISPATCHER_H__
-#define SANDBOX_SRC_SYNC_DISPATCHER_H__
+#ifndef SANDBOX_SRC_SYNC_DISPATCHER_H_
+#define SANDBOX_SRC_SYNC_DISPATCHER_H_
#include "base/basictypes.h"
#include "sandbox/src/crosscall_server.h"
@@ -35,4 +35,4 @@ private:
} // namespace sandbox
-#endif // SANDBOX_SRC_FILESYSTEM_DISPATCHER_H__
+#endif // SANDBOX_SRC_SYNC_DISPATCHER_H_
diff --git a/sandbox/tests/validation_tests/stdafx.h b/sandbox/tests/validation_tests/stdafx.h
index 6810c66..9df7b84 100644
--- a/sandbox/tests/validation_tests/stdafx.h
+++ b/sandbox/tests/validation_tests/stdafx.h
@@ -2,12 +2,12 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef SANDBOX_TESTS_VALIDATION_TESTS_STDAFX_H__
-#define SANDBOX_TESTS_VALIDATION_TESTS_STDAFX_H__
+#ifndef SANDBOX_TESTS_VALIDATION_TESTS_STDAFX_H_
+#define SANDBOX_TESTS_VALIDATION_TESTS_STDAFX_H_
#include <windows.h>
#include <stdio.h>
#include <stdlib.h>
#include <shlwapi.h>
-#endif // SANDBOX_TESTS_VALIDATION_TESTS__STDAFX_H__
+#endif // SANDBOX_TESTS_VALIDATION_TESTS_STDAFX_H_