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/test/fake_layer_tree_host_client.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/test/fake_layer_tree_host_client.h')
-rw-r--r-- | cc/test/fake_layer_tree_host_client.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cc/test/fake_layer_tree_host_client.h b/cc/test/fake_layer_tree_host_client.h index 2cdf93c..8140495 100644 --- a/cc/test/fake_layer_tree_host_client.h +++ b/cc/test/fake_layer_tree_host_client.h @@ -1,8 +1,8 @@ // Copyright 2012 The Chromium 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 FakeCCLayerTreeHostClient_h -#define FakeCCLayerTreeHostClient_h +#ifndef CC_TEST_FAKE_LAYER_TREE_HOST_CLIENT_H_ +#define CC_TEST_FAKE_LAYER_TREE_HOST_CLIENT_H_ #include "config.h" @@ -35,4 +35,4 @@ public: }; } -#endif // FakeCCLayerTreeHostClient_h +#endif // CC_TEST_FAKE_LAYER_TREE_HOST_CLIENT_H_ |