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/io_surface_layer.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'cc/io_surface_layer.h') diff --git a/cc/io_surface_layer.h b/cc/io_surface_layer.h index 7dfc15c..69a9f60 100644 --- a/cc/io_surface_layer.h +++ b/cc/io_surface_layer.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 IOSurfaceLayerChromium_h -#define IOSurfaceLayerChromium_h +#ifndef CC_IO_SURFACE_LAYER_H_ +#define CC_IO_SURFACE_LAYER_H_ #include "cc/cc_export.h" #include "cc/layer.h" @@ -31,4 +31,4 @@ private: }; } -#endif +#endif // CC_IO_SURFACE_LAYER_H_ -- cgit v1.1