From 759c275760b51defcfe5545abb887ad2616335f4 Mon Sep 17 00:00:00 2001 From: Alex Deymo Date: Mon, 17 Mar 2014 21:09:36 -0700 Subject: 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 ___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 Reviewed-by: Don Garrett Commit-Queue: Alex Deymo --- filesystem_iterator.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'filesystem_iterator.h') diff --git a/filesystem_iterator.h b/filesystem_iterator.h index a1ba8af7..67908aba 100644 --- a/filesystem_iterator.h +++ b/filesystem_iterator.h @@ -1,9 +1,9 @@ -// Copyright (c) 2009 The Chromium Authors. All rights reserved. +// Copyright (c) 2009 The Chromium OS Authors. All rights reserved. // 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_FILESYSTEM_ITERATOR_H__ -#define CHROMEOS_PLATFORM_UPDATE_ENGINE_FILESYSTEM_ITERATOR_H__ +#ifndef CHROMEOS_PLATFORM_UPDATE_ENGINE_FILESYSTEM_ITERATOR_H_ +#define CHROMEOS_PLATFORM_UPDATE_ENGINE_FILESYSTEM_ITERATOR_H_ // This class is used to walk a filesystem. It will iterate over every file // on the same device as the file passed in the ctor. Directories will be @@ -123,4 +123,4 @@ class FilesystemIterator { } // namespace chromeos_update_engine -#endif // CHROMEOS_PLATFORM_UPDATE_ENGINE_FILESYSTEM_ITERATOR_H__ +#endif // CHROMEOS_PLATFORM_UPDATE_ENGINE_FILESYSTEM_ITERATOR_H_ -- cgit v1.2.3