| Index: tools/clang/rewrite_to_chrome_style/RewriteToChromeStyle.cpp
|
| diff --git a/tools/clang/rewrite_to_chrome_style/RewriteToChromeStyle.cpp b/tools/clang/rewrite_to_chrome_style/RewriteToChromeStyle.cpp
|
| index 600adeb807171fb69775d72155cf35aa883edac9..6567f77918d8e70960af1cadaeb32abaeafedc7f 100644
|
| --- a/tools/clang/rewrite_to_chrome_style/RewriteToChromeStyle.cpp
|
| +++ b/tools/clang/rewrite_to_chrome_style/RewriteToChromeStyle.cpp
|
| @@ -182,8 +182,8 @@ bool IsBlacklistedMethod(const clang::CXXMethodDecl& decl) {
|
| clang::StringRef name = decl.getName();
|
|
|
| // These methods should never be renamed.
|
| - static const char* kBlacklistMethods[] = {"trace", "lock", "unlock",
|
| - "try_lock"};
|
| + static const char* kBlacklistMethods[] = {"trace", "traceImpl", "lock",
|
| + "unlock", "try_lock"};
|
| for (const auto& b : kBlacklistMethods) {
|
| if (name == b)
|
| return true;
|
|
|