diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-05 04:12:41 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-05 04:12:41 +0000 |
commit | 8fcbaa37a2b58cc64eef233b009eb974f2f97cf0 (patch) | |
tree | 709f40f29da81396a5466dd466286e66999701c6 /cc/input_handler.h | |
parent | 4f742357a70286e917647d27787eff53cc99a4bb (diff) | |
download | chromium_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/input_handler.h')
-rw-r--r-- | cc/input_handler.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cc/input_handler.h b/cc/input_handler.h index f5b2e23..5f6a706 100644 --- a/cc/input_handler.h +++ b/cc/input_handler.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 CCInputHandler_h -#define CCInputHandler_h +#ifndef CC_INPUT_HANDLER_H_ +#define CC_INPUT_HANDLER_H_ #include "base/basictypes.h" #include "base/time.h" @@ -88,4 +88,4 @@ private: } -#endif +#endif // CC_INPUT_HANDLER_H_ |