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:
@ -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_
|
||||
|
Reference in New Issue
Block a user