summaryrefslogtreecommitdiffstats
path: root/cc/texture_layer.h
diff options
context:
space:
mode:
authortfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-11-05 04:12:41 +0000
committertfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-11-05 04:12:41 +0000
commit8fcbaa37a2b58cc64eef233b009eb974f2f97cf0 (patch)
tree709f40f29da81396a5466dd466286e66999701c6 /cc/texture_layer.h
parent4f742357a70286e917647d27787eff53cc99a4bb (diff)
downloadchromium_src-8fcbaa37a2b58cc64eef233b009eb974f2f97cf0.zip
chromium_src-8fcbaa37a2b58cc64eef233b009eb974f2f97cf0.tar.gz
chromium_src-8fcbaa37a2b58cc64eef233b009eb974f2f97cf0.tar.bz2
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
Diffstat (limited to 'cc/texture_layer.h')
-rw-r--r--cc/texture_layer.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/cc/texture_layer.h b/cc/texture_layer.h
index b5dad08..cfa5ddb 100644
--- a/cc/texture_layer.h
+++ b/cc/texture_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 TextureLayerChromium_h
-#define TextureLayerChromium_h
+#ifndef CC_TEXTURE_LAYER_H_
+#define CC_TEXTURE_LAYER_H_
#include "cc/cc_export.h"
#include "cc/layer.h"
@@ -72,4 +72,4 @@ private:
};
}
-#endif
+#endif // CC_TEXTURE_LAYER_H_