summaryrefslogtreecommitdiffstats
path: root/cc/gl_renderer_unittest.cc
diff options
context:
space:
mode:
authordanakj@chromium.org <danakj@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-11-05 20:00:49 +0000
committerdanakj@chromium.org <danakj@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-11-05 20:00:49 +0000
commitbc5e77c1c456d9ab602816fd7082ef5a4aed22d4 (patch)
treed42dfe7d46f9b247df86327e84f6755f852d2b6c /cc/gl_renderer_unittest.cc
parentda88dc8dddd98f2af4b0e1bc99ebf1c2e4c14f6f (diff)
downloadchromium_src-bc5e77c1c456d9ab602816fd7082ef5a4aed22d4.zip
chromium_src-bc5e77c1c456d9ab602816fd7082ef5a4aed22d4.tar.gz
chromium_src-bc5e77c1c456d9ab602816fd7082ef5a4aed22d4.tar.bz2
cc: Fix style for comments at the end of namespaces
Make sure we have a comment at the end of the namespace for each .cc file and that there are two spaces between the closing brace and the comment. R=enne Review URL: https://chromiumcodereview.appspot.com/11275153 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@166005 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'cc/gl_renderer_unittest.cc')
-rw-r--r--cc/gl_renderer_unittest.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/cc/gl_renderer_unittest.cc b/cc/gl_renderer_unittest.cc
index 8e808058..bb0e9c6 100644
--- a/cc/gl_renderer_unittest.cc
+++ b/cc/gl_renderer_unittest.cc
@@ -22,6 +22,8 @@ using namespace cc;
using namespace WebKit;
using namespace WebKitTests;
+namespace {
+
class FrameCountingMemoryAllocationSettingContext : public FakeWebGraphicsContext3D {
public:
FrameCountingMemoryAllocationSettingContext() : m_frame(0) { }
@@ -483,3 +485,5 @@ TEST(GLRendererTest2, visibilityChangeIsLastCall)
renderer.setVisible(false);
EXPECT_TRUE(lastCallWasSetVisiblity);
}
+
+} // anonymous namespace