Index: third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/cpp.py |
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/cpp.py b/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/cpp.py |
index 47747ef2e15dff447f3501c6fbef279b8e446dda..77fca1dcf2bcb3a011a1c5fa2e3237ddfd196879 100644 |
--- a/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/cpp.py |
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/cpp.py |
@@ -3510,6 +3510,7 @@ def check_identifier_name_in_declaration(filename, line_number, line, file_state |
# Various exceptions to the rule: JavaScript op codes functions, const_iterator. |
if (not (filename.find('JavaScriptCore') >= 0 and modified_identifier.find('op_') >= 0) |
and not (filename.find('gtk') >= 0 and modified_identifier.startswith('webkit_') >= 0) |
+ and not (filename.find('StructTraits.h') >= 0) |
and not modified_identifier.startswith('tst_') |
and not modified_identifier.startswith('webkit_dom_object_') |
and not modified_identifier.startswith('webkit_soup') |