0

sql: Cleanup to fix the header include guards.

The header include guards should match the file path from root.

These entries were found using a modified version of Eric's
fix-include-guards.py script found attached in
https://code.google.com/p/chromium/issues/detail?id=435361#c7.

BUG=None
TEST=sql_unittests
R=erikwright@chromium.org

Review URL: https://codereview.chromium.org/1238583002

Cr-Commit-Position: refs/heads/master@{#338703}
This commit is contained in:
tfarina
2015-07-14 09:35:35 -07:00
committed by Commit bot
parent fb008005a0
commit fd5d2681c7
2 changed files with 6 additions and 6 deletions

@ -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 APP_SQL_INIT_STATUS_H_
#define APP_SQL_INIT_STATUS_H_
#ifndef SQL_INIT_STATUS_H_
#define SQL_INIT_STATUS_H_
namespace sql {
@ -20,4 +20,4 @@ enum InitStatus {
} // namespace sql
#endif // APP_SQL_INIT_STATUS_H_
#endif // SQL_INIT_STATUS_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 SQL_EXPORT_H_
#define SQL_EXPORT_H_
#ifndef SQL_SQL_EXPORT_H_
#define SQL_SQL_EXPORT_H_
#if defined(COMPONENT_BUILD)
#if defined(WIN32)
@ -26,4 +26,4 @@
#define SQL_EXPORT
#endif
#endif // SQL_EXPORT_H_
#endif // SQL_SQL_EXPORT_H_