Index: tools/clang/rewrite_to_chrome_style/tests/template-original.cc |
diff --git a/tools/clang/rewrite_to_chrome_style/tests/template-original.cc b/tools/clang/rewrite_to_chrome_style/tests/template-original.cc |
index 85c0ce03bdaabcd6d75fdeaaf9d49ea70aa97881..199f4a014a96f28506f76067ce3c7d6a6a31fd2a 100644 |
--- a/tools/clang/rewrite_to_chrome_style/tests/template-original.cc |
+++ b/tools/clang/rewrite_to_chrome_style/tests/template-original.cc |
@@ -258,6 +258,17 @@ class Class { |
} // namespace cxx_dependent_scope_member_expr_testing |
+namespace blacklisting_of_renaming_of_begin_method { |
+ |
+template <typename T> |
+class IntrusiveHeap { |
+ public: |
+ // https://crbug.com/672353: |begin| shouldn't be rewritten to |Begin|. |
+ const T* begin() const { return nullptr; } |
+}; |
+ |
+} // namespace blacklisting_of_renaming_of_begin_method |
+ |
} // namespace blink |
namespace not_blink { |