diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-11 14:47:50 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-11 14:47:50 +0000 |
commit | ffaa2a63665d31ba16ab63c2dc447e7543dc5002 (patch) | |
tree | 82bee0248de1b78bd1d7efbc5be60f8219e1c090 /cc/test | |
parent | e89cfcb9090e8c98129ae9160c513f504db74599 (diff) | |
download | chromium_src-ffaa2a63665d31ba16ab63c2dc447e7543dc5002.zip chromium_src-ffaa2a63665d31ba16ab63c2dc447e7543dc5002.tar.gz chromium_src-ffaa2a63665d31ba16ab63c2dc447e7543dc5002.tar.bz2 |
cc: Fix header include guards.
Fixed the files found by the following command lines:
$ cpplint.py cc/* 2>&1 | grep header_guard
$ cpplint.py cc/test/* 2>&1 | grep header_guard
BUG=144576,144577
TEST=cc_unittests
TBR=enne@chromium.org,jamesr@chromium.org
Review URL: https://chromiumcodereview.appspot.com/11365188
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@167123 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'cc/test')
-rw-r--r-- | cc/test/fake_content_layer_client.h | 5 | ||||
-rw-r--r-- | cc/test/fake_proxy.h | 8 |
2 files changed, 9 insertions, 4 deletions
diff --git a/cc/test/fake_content_layer_client.h b/cc/test/fake_content_layer_client.h index 1cf4646..b7011cc 100644 --- a/cc/test/fake_content_layer_client.h +++ b/cc/test/fake_content_layer_client.h @@ -2,6 +2,9 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. +#ifndef CC_TEST_FAKE_CONTENT_LAYER_CLIENT_H_ +#define CC_TEST_FAKE_CONTENT_LAYER_CLIENT_H_ + #include "base/compiler_specific.h" #include "cc/content_layer_client.h" @@ -20,3 +23,5 @@ private: }; } // namespace WebKitTests + +#endif // CC_TEST_FAKE_CONTENT_LAYER_CLIENT_H_ diff --git a/cc/test/fake_proxy.h b/cc/test/fake_proxy.h index 5a77f69..fdbc43d 100644 --- a/cc/test/fake_proxy.h +++ b/cc/test/fake_proxy.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 FakeCCProxy_h -#define FakeCCProxy_h +#ifndef CC_TEST_FAKE_PROXY_H_ +#define CC_TEST_FAKE_PROXY_H_ #include "cc/layer_tree_host.h" #include "cc/proxy.h" @@ -43,6 +43,6 @@ private: RendererCapabilities m_capabilities; }; -} +} // namespace cc -#endif +#endif // CC_TEST_FAKE_PROXY_H_ |