From 8fcbaa37a2b58cc64eef233b009eb974f2f97cf0 Mon Sep 17 00:00:00 2001 From: "tfarina@chromium.org" Date: Mon, 5 Nov 2012 04:12:41 +0000 Subject: cc: Fix header include guards of our header files. Fixed with a hacky python script :/ BUG=144576,144577 TEST=$ cpplint.py cc/*.h 2>&1 | grep header_guard. And verified it doesn't complain. R=enne@chromium.org,jamesr@chromium.org Review URL: https://chromiumcodereview.appspot.com/11368063 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@165895 0039d316-1c4b-4281-b951-d872f2087c98 --- cc/layer_impl.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'cc/layer_impl.h') diff --git a/cc/layer_impl.h b/cc/layer_impl.h index c9d6905..d51f3d0 100644 --- a/cc/layer_impl.h +++ b/cc/layer_impl.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 CCLayerImpl_h -#define CCLayerImpl_h +#ifndef CC_LAYER_IMPL_H_ +#define CC_LAYER_IMPL_H_ #include @@ -418,4 +418,4 @@ void sortLayers(std::vector::iterator first, std::vector } -#endif // CCLayerImpl_h +#endif // CC_LAYER_IMPL_H_ -- cgit v1.1