| Index: tools/clang/rewrite_to_chrome_style/tests/template-expected.cc
|
| diff --git a/tools/clang/rewrite_to_chrome_style/tests/template-expected.cc b/tools/clang/rewrite_to_chrome_style/tests/template-expected.cc
|
| index 0b68b1b2208f2362f67c40b67dba66fa26ce5908..c62e8d0e76d5bc3afbb47b988a139e744b930901 100644
|
| --- a/tools/clang/rewrite_to_chrome_style/tests/template-expected.cc
|
| +++ b/tools/clang/rewrite_to_chrome_style/tests/template-expected.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 {
|
|
|