Index: Tools/Scripts/webkitpy/style/checkers/cpp_unittest.py |
diff --git a/Tools/Scripts/webkitpy/style/checkers/cpp_unittest.py b/Tools/Scripts/webkitpy/style/checkers/cpp_unittest.py |
index 70ac696e9ff981f98e9b3d5f24d87855cb466f75..bef7e8ccfaf685b38f1899d5ce68e441e531f53c 100644 |
--- a/Tools/Scripts/webkitpy/style/checkers/cpp_unittest.py |
+++ b/Tools/Scripts/webkitpy/style/checkers/cpp_unittest.py |
@@ -4921,13 +4921,13 @@ class WebKitStyleTest(CppStyleTestBase): |
'UNDER_SCORE' + name_underscore_error_message) |
self.assert_lint('static inline const char const& const under_score;', |
'under_score' + name_underscore_error_message) |
- self.assert_lint('WebCore::RenderObject* under_score;', |
+ self.assert_lint('WebCore::LayoutObject* under_score;', |
'under_score' + name_underscore_error_message) |
self.assert_lint('int func_name();', |
'func_name' + name_underscore_error_message) |
- self.assert_lint('RefPtr<RenderObject*> under_score;', |
+ self.assert_lint('RefPtr<LayoutObject*> under_score;', |
'under_score' + name_underscore_error_message) |
- self.assert_lint('WTF::Vector<WTF::RefPtr<const RenderObject* const>> under_score;', |
+ self.assert_lint('WTF::Vector<WTF::RefPtr<const LayoutObject* const>> under_score;', |
'under_score' + name_underscore_error_message) |
self.assert_lint('int under_score[];', |
'under_score' + name_underscore_error_message) |