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 2efad3274b4ef7b6445b715fce2487f7150b1ab2..31dc24cf1ce9527835e49c14ae035e3046832858 100644 |
--- a/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/cpp.py |
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/cpp.py |
@@ -3502,6 +3502,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') |