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.
[email protected],[email protected]


Review URL: https://chromiumcodereview.appspot.com/11368063

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@165895 0039d316-1c4b-4281-b951-d872f2087c98
diff --git a/cc/render_pass_sink.h b/cc/render_pass_sink.h
index 10a34e7..ae00f62 100644
--- a/cc/render_pass_sink.h
+++ b/cc/render_pass_sink.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 CCRenderPassSink_h
-#define CCRenderPassSink_h
+#ifndef CC_RENDER_PASS_SINK_H_
+#define CC_RENDER_PASS_SINK_H_
 
 #include "base/memory/scoped_ptr.h"
 #include "cc/cc_export.h"
@@ -18,4 +18,4 @@
 };
 
 }
-#endif // CCRenderPassSink_h
+#endif  // CC_RENDER_PASS_SINK_H_