Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(502)

Unified Diff: tools/clang/rewrite_to_chrome_style/tests/template-expected.cc

Issue 2564663002: Skipping renaming of begin/end/etc. should be unconditional. (Closed)
Patch Set: Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 {

Powered by Google App Engine
This is Rietveld 408576698