summaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authortfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-07-27 03:06:27 +0000
committertfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-07-27 03:06:27 +0000
commit83afcbcc9bf7be3cdf91a4a6af573638c042a694 (patch)
treef651806f511203f05f5fe71583454852bc6be710 /ui
parentaf7023c1a1ff7265761522a6ecb0a46697e77fa7 (diff)
downloadchromium_src-83afcbcc9bf7be3cdf91a4a6af573638c042a694.zip
chromium_src-83afcbcc9bf7be3cdf91a4a6af573638c042a694.tar.gz
chromium_src-83afcbcc9bf7be3cdf91a4a6af573638c042a694.tar.bz2
ui: No need to typedef testing::Test in unittests.
TEST() macro should be used instead. TEST=ui_unittests R=sky@chromium.org Review URL: https://chromiumcodereview.appspot.com/10808072 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148710 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui')
-rw-r--r--ui/aura/bench/bench_main.cc4
-rw-r--r--ui/aura/window_property.h2
-rw-r--r--ui/base/keycodes/keyboard_code_conversion_mac.mm3
-rw-r--r--ui/base/resource/resource_bundle_win.cc2
-rw-r--r--ui/base/text/text_elider.cc2
-rw-r--r--ui/base/win/hwnd_subclass_unittest.cc11
-rw-r--r--ui/compositor/compositor.cc8
-rw-r--r--ui/compositor/scoped_layer_animation_settings.cc3
-rw-r--r--ui/gfx/canvas_skia.cc2
-rw-r--r--ui/gfx/font_list_unittest.cc38
-rw-r--r--ui/gfx/image/image_skia_operations.cc2
-rw-r--r--ui/gfx/image/image_skia_unittest.cc8
-rw-r--r--ui/gfx/screen_unittest.cc6
-rw-r--r--ui/gl/gl_context_glx.cc2
-rw-r--r--ui/gl/gl_implementation_android.cc2
-rw-r--r--ui/gl/gl_implementation_linux.cc2
-rw-r--r--ui/gl/gl_implementation_mac.cc2
-rw-r--r--ui/gl/gl_implementation_win.cc2
-rw-r--r--ui/gl/gl_surface_glx.cc2
-rw-r--r--ui/gl/gl_surface_linux.cc2
-rw-r--r--ui/surface/accelerated_surface_win.cc2
-rw-r--r--ui/ui_controls/ui_controls_mac.mm2
22 files changed, 51 insertions, 58 deletions
diff --git a/ui/aura/bench/bench_main.cc b/ui/aura/bench/bench_main.cc
index 045a120..4c135cd 100644
--- a/ui/aura/bench/bench_main.cc
+++ b/ui/aura/bench/bench_main.cc
@@ -10,6 +10,7 @@
#include "base/message_loop.h"
#include "base/string_split.h"
#include "base/time.h"
+#include "third_party/khronos/GLES2/gl2.h"
#include "third_party/skia/include/core/SkXfermode.h"
#include "ui/aura/env.h"
#include "ui/aura/event.h"
@@ -28,7 +29,6 @@
#include "ui/gfx/canvas.h"
#include "ui/gfx/rect.h"
#include "ui/gfx/skia_util.h"
-#include "third_party/khronos/GLES2/gl2.h"
#ifndef GL_GLEXT_PROTOTYPES
#define GL_GLEXT_PROTOTYPES 1
#endif
@@ -279,7 +279,7 @@ class SoftwareScrollBench : public BenchCompositorObserver {
DISALLOW_COPY_AND_ASSIGN(SoftwareScrollBench);
};
-} // anonymous namespace
+} // namespace
int main(int argc, char** argv) {
CommandLine::Init(argc, argv);
diff --git a/ui/aura/window_property.h b/ui/aura/window_property.h
index a2a5979..af1655f 100644
--- a/ui/aura/window_property.h
+++ b/ui/aura/window_property.h
@@ -28,7 +28,7 @@
//
// // Use this to define a non exported property that is primitive,
// // or a pointer you don't want to automatically deleted, and is used
-// // only in a specific file. This will define the property in anonymous
+// // only in a specific file. This will define the property in an unnamed
// // namespace which cannot be accessed from another file.
// DEFINE_LOCAL_WINDOW_PROPERTY_KEY(MyType, kMyKey, MyDefault);
//
diff --git a/ui/base/keycodes/keyboard_code_conversion_mac.mm b/ui/base/keycodes/keyboard_code_conversion_mac.mm
index 3d9e0a6..2f8c211 100644
--- a/ui/base/keycodes/keyboard_code_conversion_mac.mm
+++ b/ui/base/keycodes/keyboard_code_conversion_mac.mm
@@ -5,6 +5,7 @@
#import "ui/base/keycodes/keyboard_code_conversion_mac.h"
#include <algorithm>
+
#import <Carbon/Carbon.h>
#include "base/logging.h"
@@ -447,7 +448,7 @@ KeyboardCode KeyboardCodeFromKeyCode(unsigned short keyCode) {
return kKeyboardCodes[keyCode];
}
-} // anonymous namespace
+} // namespace
int MacKeyCodeForWindowsKeyCode(KeyboardCode keycode,
NSUInteger flags,
diff --git a/ui/base/resource/resource_bundle_win.cc b/ui/base/resource/resource_bundle_win.cc
index bba84d4..96f5409 100644
--- a/ui/base/resource/resource_bundle_win.cc
+++ b/ui/base/resource/resource_bundle_win.cc
@@ -33,7 +33,7 @@ FilePath GetResourcesPakFilePath(const std::string& pak_name) {
return FilePath(ASCIIToUTF16(pak_name));
}
-} // end anonymous namespace
+} // namespace
void ResourceBundle::LoadCommonResources() {
// As a convenience, add the current resource module as a data packs.
diff --git a/ui/base/text/text_elider.cc b/ui/base/text/text_elider.cc
index 7d7194a..b645992 100644
--- a/ui/base/text/text_elider.cc
+++ b/ui/base/text/text_elider.cc
@@ -5,7 +5,7 @@
// This file implements utility functions for eliding and formatting UI text.
//
// Note that several of the functions declared in text_elider.h are implemented
-// in this file using helper classes in the anonymous namespace.
+// in this file using helper classes in an unnamed namespace.
#include "ui/base/text/text_elider.h"
diff --git a/ui/base/win/hwnd_subclass_unittest.cc b/ui/base/win/hwnd_subclass_unittest.cc
index 814f3df..5917ef2 100644
--- a/ui/base/win/hwnd_subclass_unittest.cc
+++ b/ui/base/win/hwnd_subclass_unittest.cc
@@ -2,15 +2,14 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
+#include "ui/base/win/hwnd_subclass.h"
+
#include "base/basictypes.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "ui/base/win/window_impl.h"
-#include "ui/base/win/hwnd_subclass.h"
namespace ui {
-typedef testing::Test HWNDSubclassTest;
-
namespace {
class TestWindow : public ui::WindowImpl {
@@ -68,7 +67,7 @@ class TestMessageFilter : public HWNDMessageFilter {
} // namespace
-TEST_F(HWNDSubclassTest, Filtering) {
+TEST(HWNDSubclassTest, Filtering) {
TestWindow window;
window.Init(NULL, gfx::Rect(0, 0, 100, 100));
EXPECT_TRUE(window.hwnd() != NULL);
@@ -97,7 +96,7 @@ TEST_F(HWNDSubclassTest, Filtering) {
}
}
-TEST_F(HWNDSubclassTest, FilteringMultipleFilters) {
+TEST(HWNDSubclassTest, FilteringMultipleFilters) {
TestWindow window;
window.Init(NULL, gfx::Rect(0, 0, 100, 100));
EXPECT_TRUE(window.hwnd() != NULL);
@@ -131,7 +130,7 @@ TEST_F(HWNDSubclassTest, FilteringMultipleFilters) {
}
}
-TEST_F(HWNDSubclassTest, RemoveFilter) {
+TEST(HWNDSubclassTest, RemoveFilter) {
TestWindow window;
window.Init(NULL, gfx::Rect(0, 0, 100, 100));
EXPECT_TRUE(window.hwnd() != NULL);
diff --git a/ui/compositor/compositor.cc b/ui/compositor/compositor.cc
index f9f75aa..65a7a75 100644
--- a/ui/compositor/compositor.cc
+++ b/ui/compositor/compositor.cc
@@ -8,12 +8,12 @@
#include "base/command_line.h"
#include "base/threading/thread_restrictions.h"
-#include "third_party/WebKit/Source/WebKit/chromium/public/WebCompositor.h"
+#include "third_party/skia/include/core/SkBitmap.h"
+#include "third_party/skia/include/images/SkImageEncoder.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebFloatPoint.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebRect.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebSize.h"
-#include "third_party/skia/include/core/SkBitmap.h"
-#include "third_party/skia/include/images/SkImageEncoder.h"
+#include "third_party/WebKit/Source/WebKit/chromium/public/WebCompositor.h"
#include "ui/compositor/compositor_observer.h"
#include "ui/compositor/compositor_switches.h"
#include "ui/compositor/dip_util.h"
@@ -40,7 +40,7 @@ bool test_compositor_enabled = false;
ui::ContextFactory* g_context_factory = NULL;
-} // anonymous namespace
+} // namespace
namespace ui {
diff --git a/ui/compositor/scoped_layer_animation_settings.cc b/ui/compositor/scoped_layer_animation_settings.cc
index 038058b..c534aac 100644
--- a/ui/compositor/scoped_layer_animation_settings.cc
+++ b/ui/compositor/scoped_layer_animation_settings.cc
@@ -12,7 +12,7 @@ namespace {
static const base::TimeDelta kDefaultTransitionDuration =
base::TimeDelta::FromMilliseconds(200);
-} // namespace;
+} // namespace
namespace ui {
@@ -71,4 +71,3 @@ ScopedLayerAnimationSettings::GetPreemptionStrategy() const {
}
} // namespace ui
-
diff --git a/ui/gfx/canvas_skia.cc b/ui/gfx/canvas_skia.cc
index 5f0fbf6a..29f6f77 100644
--- a/ui/gfx/canvas_skia.cc
+++ b/ui/gfx/canvas_skia.cc
@@ -188,7 +188,7 @@ int AdjustPlatformSpecificFlags(const string16& text, int flags) {
return flags;
}
-} // anonymous namespace
+} // namespace
namespace gfx {
diff --git a/ui/gfx/font_list_unittest.cc b/ui/gfx/font_list_unittest.cc
index 16151d38..84258a2 100644
--- a/ui/gfx/font_list_unittest.cc
+++ b/ui/gfx/font_list_unittest.cc
@@ -29,16 +29,14 @@ std::string FontToString(const gfx::Font& font) {
namespace gfx {
-typedef testing::Test FontListTest;
-
-TEST_F(FontListTest, FontDescString_FromDescString) {
+TEST(FontListTest, FontDescString_FromDescString) {
// Test init from font name style size string.
FontList font_list = FontList("Droid Sans serif, Sans serif, 10px");
const std::string& font_str = font_list.GetFontDescriptionString();
EXPECT_EQ("Droid Sans serif, Sans serif, 10px", font_str);
}
-TEST_F(FontListTest, FontDescString_FromFont) {
+TEST(FontListTest, FontDescString_FromFont) {
// Test init from Font.
Font font("Arial", 8);
FontList font_list = FontList(font);
@@ -46,7 +44,7 @@ TEST_F(FontListTest, FontDescString_FromFont) {
EXPECT_EQ("Arial,8px", font_str);
}
-TEST_F(FontListTest, FontDescString_FromFontWithNonNormalStyle) {
+TEST(FontListTest, FontDescString_FromFontWithNonNormalStyle) {
// Test init from Font with non-normal style.
Font font("Arial", 8);
FontList font_list = FontList(font.DeriveFont(2, Font::BOLD));
@@ -56,7 +54,7 @@ TEST_F(FontListTest, FontDescString_FromFontWithNonNormalStyle) {
EXPECT_EQ("Arial,Italic 6px", font_list.GetFontDescriptionString());
}
-TEST_F(FontListTest, FontDescString_FromFontVector) {
+TEST(FontListTest, FontDescString_FromFontVector) {
// Test init from Font vector.
Font font("Arial", 8);
Font font_1("Sans serif", 10);
@@ -68,7 +66,7 @@ TEST_F(FontListTest, FontDescString_FromFontVector) {
EXPECT_EQ("Arial,Sans serif,Bold 8px", font_str);
}
-TEST_F(FontListTest, Fonts_FromDescString) {
+TEST(FontListTest, Fonts_FromDescString) {
// Test init from font name size string.
FontList font_list = FontList("serif,Sans serif, 13px");
const std::vector<Font>& fonts = font_list.GetFonts();
@@ -77,7 +75,7 @@ TEST_F(FontListTest, Fonts_FromDescString) {
EXPECT_EQ("Sans serif|13", FontToString(fonts[1]));
}
-TEST_F(FontListTest, Fonts_FromDescStringInFlexibleFormat) {
+TEST(FontListTest, Fonts_FromDescStringInFlexibleFormat) {
// Test init from font name size string with flexible format.
FontList font_list = FontList(" serif , Sans serif , 13px");
const std::vector<Font>& fonts = font_list.GetFonts();
@@ -86,7 +84,7 @@ TEST_F(FontListTest, Fonts_FromDescStringInFlexibleFormat) {
EXPECT_EQ("Sans serif|13", FontToString(fonts[1]));
}
-TEST_F(FontListTest, Fonts_FromDescStringWithStyleInFlexibleFormat) {
+TEST(FontListTest, Fonts_FromDescStringWithStyleInFlexibleFormat) {
// Test init from font name style size string with flexible format.
FontList font_list = FontList(" serif , Sans serif , Bold "
" Italic 13px");
@@ -96,7 +94,7 @@ TEST_F(FontListTest, Fonts_FromDescStringWithStyleInFlexibleFormat) {
EXPECT_EQ("Sans serif|13|bold|italic", FontToString(fonts[1]));
}
-TEST_F(FontListTest, Fonts_FromFont) {
+TEST(FontListTest, Fonts_FromFont) {
// Test init from Font.
Font font("Arial", 8);
FontList font_list = FontList(font);
@@ -105,7 +103,7 @@ TEST_F(FontListTest, Fonts_FromFont) {
EXPECT_EQ("Arial|8", FontToString(fonts[0]));
}
-TEST_F(FontListTest, Fonts_FromFontWithNonNormalStyle) {
+TEST(FontListTest, Fonts_FromFontWithNonNormalStyle) {
// Test init from Font with non-normal style.
Font font("Arial", 8);
FontList font_list = FontList(font.DeriveFont(2, Font::BOLD));
@@ -119,7 +117,7 @@ TEST_F(FontListTest, Fonts_FromFontWithNonNormalStyle) {
EXPECT_EQ("Arial|6|italic", FontToString(fonts[0]));
}
-TEST_F(FontListTest, Fonts_FromFontVector) {
+TEST(FontListTest, Fonts_FromFontVector) {
// Test init from Font vector.
Font font("Arial", 8);
Font font_1("Sans serif", 10);
@@ -133,7 +131,7 @@ TEST_F(FontListTest, Fonts_FromFontVector) {
EXPECT_EQ("Sans serif|8|bold", FontToString(fonts[1]));
}
-TEST_F(FontListTest, Fonts_DescStringWithStyleInFlexibleFormat_RoundTrip) {
+TEST(FontListTest, Fonts_DescStringWithStyleInFlexibleFormat_RoundTrip) {
// Test round trip from font description string to font vector to
// font description string.
FontList font_list = FontList(" serif , Sans serif , Bold "
@@ -146,7 +144,7 @@ TEST_F(FontListTest, Fonts_DescStringWithStyleInFlexibleFormat_RoundTrip) {
EXPECT_EQ("serif,Sans serif,Bold Italic 13px", desc_str);
}
-TEST_F(FontListTest, Fonts_FontVector_RoundTrip) {
+TEST(FontListTest, Fonts_FontVector_RoundTrip) {
// Test round trip from font vector to font description string to font vector.
Font font("Arial", 8);
Font font_1("Sans serif", 10);
@@ -164,7 +162,7 @@ TEST_F(FontListTest, Fonts_FontVector_RoundTrip) {
EXPECT_EQ("Sans serif|8|bold", FontToString(round_trip_fonts[1]));
}
-TEST_F(FontListTest, FontDescString_GetStyle) {
+TEST(FontListTest, FontDescString_GetStyle) {
FontList font_list = FontList("Arial,Sans serif, 8px");
EXPECT_EQ(Font::NORMAL, font_list.GetFontStyle());
@@ -178,7 +176,7 @@ TEST_F(FontListTest, FontDescString_GetStyle) {
EXPECT_EQ(Font::BOLD | Font::ITALIC, font_list.GetFontStyle());
}
-TEST_F(FontListTest, Fonts_GetStyle) {
+TEST(FontListTest, Fonts_GetStyle) {
std::vector<Font> fonts;
fonts.push_back(gfx::Font("Arial", 8));
fonts.push_back(gfx::Font("Sans serif", 8));
@@ -190,7 +188,7 @@ TEST_F(FontListTest, Fonts_GetStyle) {
EXPECT_EQ(Font::ITALIC | Font::BOLD, font_list.GetFontStyle());
}
-TEST_F(FontListTest, FontDescString_DeriveFontList) {
+TEST(FontListTest, FontDescString_DeriveFontList) {
FontList font_list = FontList("Arial,Sans serif, 8px");
FontList derived = font_list.DeriveFontList(Font::BOLD | Font::ITALIC);
@@ -198,7 +196,7 @@ TEST_F(FontListTest, FontDescString_DeriveFontList) {
derived.GetFontDescriptionString());
}
-TEST_F(FontListTest, Fonts_DeriveFontList) {
+TEST(FontListTest, Fonts_DeriveFontList) {
std::vector<Font> fonts;
fonts.push_back(gfx::Font("Arial", 8));
fonts.push_back(gfx::Font("Sans serif", 8));
@@ -212,7 +210,7 @@ TEST_F(FontListTest, Fonts_DeriveFontList) {
EXPECT_EQ("Sans serif|8|bold|italic", FontToString(derived_fonts[1]));
}
-TEST_F(FontListTest, FontDescString_DeriveFontListWithSize) {
+TEST(FontListTest, FontDescString_DeriveFontListWithSize) {
FontList font_list = FontList("Arial,Sans serif,Bold Italic 8px");
FontList derived = font_list.DeriveFontListWithSize(10);
@@ -220,7 +218,7 @@ TEST_F(FontListTest, FontDescString_DeriveFontListWithSize) {
derived.GetFontDescriptionString());
}
-TEST_F(FontListTest, Fonts_DeriveFontListWithSize) {
+TEST(FontListTest, Fonts_DeriveFontListWithSize) {
std::vector<Font> fonts;
fonts.push_back(gfx::Font("Arial", 8));
fonts.push_back(gfx::Font("Sans serif", 8));
diff --git a/ui/gfx/image/image_skia_operations.cc b/ui/gfx/image/image_skia_operations.cc
index 547584f5..8a563ca 100644
--- a/ui/gfx/image/image_skia_operations.cc
+++ b/ui/gfx/image/image_skia_operations.cc
@@ -286,7 +286,7 @@ class DropShadowSource : public ImageSkiaSource {
DISALLOW_COPY_AND_ASSIGN(DropShadowSource);
};
-} // namespace;
+} // namespace
// static
ImageSkia ImageSkiaOperations::CreateBlendedImage(const ImageSkia& first,
diff --git a/ui/gfx/image/image_skia_unittest.cc b/ui/gfx/image/image_skia_unittest.cc
index 9d5dc80..e589175 100644
--- a/ui/gfx/image/image_skia_unittest.cc
+++ b/ui/gfx/image/image_skia_unittest.cc
@@ -4,12 +4,12 @@
#include "ui/gfx/image/image_skia.h"
-#include "third_party/skia/include/core/SkBitmap.h"
#include "testing/gtest/include/gtest/gtest.h"
+#include "third_party/skia/include/core/SkBitmap.h"
+#include "ui/base/layout.h"
#include "ui/gfx/image/image_skia_rep.h"
#include "ui/gfx/image/image_skia_source.h"
#include "ui/gfx/size.h"
-#include "ui/base/layout.h"
namespace gfx {
@@ -65,9 +65,7 @@ class NullSource: public ImageSkiaSource {
DISALLOW_COPY_AND_ASSIGN(NullSource);
};
-} // namespace;
-
-typedef testing::Test ImageSkiaTest;
+} // namespace
TEST(ImageSkiaTest, FixedSource) {
ImageSkiaRep image(Size(100, 200), ui::SCALE_FACTOR_100P);
diff --git a/ui/gfx/screen_unittest.cc b/ui/gfx/screen_unittest.cc
index fe4c6ea..d09f2db 100644
--- a/ui/gfx/screen_unittest.cc
+++ b/ui/gfx/screen_unittest.cc
@@ -8,16 +8,14 @@
namespace {
-typedef testing::Test ScreenTest;
-
-TEST_F(ScreenTest, GetPrimaryDisplaySize) {
+TEST(ScreenTest, GetPrimaryDisplaySize) {
// We aren't actually testing that it's correct, just that it's sane.
const gfx::Size size = gfx::Screen::GetPrimaryDisplay().size();
EXPECT_GE(size.width(), 1);
EXPECT_GE(size.height(), 1);
}
-TEST_F(ScreenTest, GetNumDisplays) {
+TEST(ScreenTest, GetNumDisplays) {
// We aren't actually testing that it's correct, just that it's sane.
EXPECT_GE(gfx::Screen::GetNumDisplays(), 1);
}
diff --git a/ui/gl/gl_context_glx.cc b/ui/gl/gl_context_glx.cc
index b895548..db5534b 100644
--- a/ui/gl/gl_context_glx.cc
+++ b/ui/gl/gl_context_glx.cc
@@ -30,7 +30,7 @@ class ScopedPtrXFree {
}
};
-} // namespace anonymous
+} // namespace
GLContextGLX::GLContextGLX(GLShareGroup* share_group)
: GLContext(share_group),
diff --git a/ui/gl/gl_implementation_android.cc b/ui/gl/gl_implementation_android.cc
index 254c037..052f48f 100644
--- a/ui/gl/gl_implementation_android.cc
+++ b/ui/gl/gl_implementation_android.cc
@@ -38,7 +38,7 @@ base::NativeLibrary LoadLibrary(const char* filename) {
return LoadLibrary(FilePath(filename));
}
-} // namespace anonymous
+} // namespace
void GetAllowedGLImplementations(std::vector<GLImplementation>* impls) {
impls->push_back(kGLImplementationEGLGLES2);
diff --git a/ui/gl/gl_implementation_linux.cc b/ui/gl/gl_implementation_linux.cc
index 35f68ac..e5ca5f6 100644
--- a/ui/gl/gl_implementation_linux.cc
+++ b/ui/gl/gl_implementation_linux.cc
@@ -45,7 +45,7 @@ base::NativeLibrary LoadLibrary(const char* filename) {
return LoadLibrary(FilePath(filename));
}
-} // namespace anonymous
+} // namespace
void GetAllowedGLImplementations(std::vector<GLImplementation>* impls) {
impls->push_back(kGLImplementationDesktopGL);
diff --git a/ui/gl/gl_implementation_mac.cc b/ui/gl/gl_implementation_mac.cc
index f05e3eb9..500999a 100644
--- a/ui/gl/gl_implementation_mac.cc
+++ b/ui/gl/gl_implementation_mac.cc
@@ -16,7 +16,7 @@ namespace gfx {
namespace {
const char kOpenGLFrameworkPath[] =
"/System/Library/Frameworks/OpenGL.framework/Versions/Current/OpenGL";
-} // namespace anonymous
+} // namespace
void GetAllowedGLImplementations(std::vector<GLImplementation>* impls) {
impls->push_back(kGLImplementationDesktopGL);
diff --git a/ui/gl/gl_implementation_win.cc b/ui/gl/gl_implementation_win.cc
index 0550e6f..eaec391 100644
--- a/ui/gl/gl_implementation_win.cc
+++ b/ui/gl/gl_implementation_win.cc
@@ -51,7 +51,7 @@ bool LoadD3DXLibrary(const FilePath& module_path,
return true;
}
-} // namespace anonymous
+} // namespace
void GetAllowedGLImplementations(std::vector<GLImplementation>* impls) {
impls->push_back(kGLImplementationEGLGLES2);
diff --git a/ui/gl/gl_surface_glx.cc b/ui/gl/gl_surface_glx.cc
index dcafb21..efb0309 100644
--- a/ui/gl/gl_surface_glx.cc
+++ b/ui/gl/gl_surface_glx.cc
@@ -37,7 +37,7 @@ Display* g_display;
const char* g_glx_extensions = NULL;
bool g_glx_create_context_robustness_supported = false;
-} // namespace anonymous
+} // namespace
GLSurfaceGLX::GLSurfaceGLX() {}
diff --git a/ui/gl/gl_surface_linux.cc b/ui/gl/gl_surface_linux.cc
index 03ab514..75542c3 100644
--- a/ui/gl/gl_surface_linux.cc
+++ b/ui/gl/gl_surface_linux.cc
@@ -20,7 +20,7 @@ namespace gfx {
namespace {
Display* g_osmesa_display;
-} // namespace anonymous
+} // namespace
// This OSMesa GL surface can use XLib to swap the contents of the buffer to a
// view.
diff --git a/ui/surface/accelerated_surface_win.cc b/ui/surface/accelerated_surface_win.cc
index da77ac5..51e2d61 100644
--- a/ui/surface/accelerated_surface_win.cc
+++ b/ui/surface/accelerated_surface_win.cc
@@ -158,7 +158,7 @@ bool CreateTemporarySurface(IDirect3DDevice9* device,
return SUCCEEDED(hr);
}
-} // namespace anonymous
+} // namespace
// A PresentThread is a thread that is dedicated to presenting surfaces to a
// window. It owns a Direct3D device and a Direct3D query for this purpose.
diff --git a/ui/ui_controls/ui_controls_mac.mm b/ui/ui_controls/ui_controls_mac.mm
index d54878d..71bd272 100644
--- a/ui/ui_controls/ui_controls_mac.mm
+++ b/ui/ui_controls/ui_controls_mac.mm
@@ -209,7 +209,7 @@ void EventQueueWatcher(const base::Closure& task) {
// when firing keyboard and mouse click events.
NSPoint g_mouse_location = { 0, 0 };
-} // anonymous namespace
+} // namespace
namespace ui_controls {