diff options
author | Alex Deymo <deymo@chromium.org> | 2014-03-17 21:09:36 -0700 |
---|---|---|
committer | chrome-internal-fetch <chrome-internal-fetch@google.com> | 2014-03-19 20:19:48 +0000 |
commit | 759c275760b51defcfe5545abb887ad2616335f4 (patch) | |
tree | ff903f6650db5026605d7afdaec5cc9cd43b7ef7 /clock_interface.h | |
parent | af309d513504683bbcfb0bfac71652999845555f (diff) |
Fix header guards to comply with Google Coding Style.
The Google Style Guide says that every header file should have a
define guard and the format of the symbol name should be
<PROJECT>_<PATH>_<FILE>_H_
This patch does all the minor fixes to comply with this and includes
a header guard for the bzip.h file, which didn't have it.
Also, the Copyright notice is adjusted to the Chromium OS code,
replacing "Chromium Authors" by "Chromium OS Authors".
BUG=None
TEST=build passes.
Change-Id: I6575cc307c464d60a5cb2b132cf1e46acb6500b5
Reviewed-on: https://chromium-review.googlesource.com/190445
Tested-by: Alex Deymo <deymo@chromium.org>
Reviewed-by: Don Garrett <dgarrett@chromium.org>
Commit-Queue: Alex Deymo <deymo@chromium.org>
Diffstat (limited to 'clock_interface.h')
-rw-r--r-- | clock_interface.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clock_interface.h b/clock_interface.h index d9e6124c..cd714b1c 100644 --- a/clock_interface.h +++ b/clock_interface.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 CHROMEOS_PLATFORM_UPDATE_ENGINE_CLOCK_INTERFACE_H__ -#define CHROMEOS_PLATFORM_UPDATE_ENGINE_CLOCK_INTERFACE_H__ +#ifndef CHROMEOS_PLATFORM_UPDATE_ENGINE_CLOCK_INTERFACE_H_ +#define CHROMEOS_PLATFORM_UPDATE_ENGINE_CLOCK_INTERFACE_H_ #include <string> @@ -39,4 +39,4 @@ class ClockInterface { } // namespace chromeos_update_engine -#endif // CHROMEOS_PLATFORM_UPDATE_ENGINE_CLOCK_INTERFACE_H__ +#endif // CHROMEOS_PLATFORM_UPDATE_ENGINE_CLOCK_INTERFACE_H_ |