| Index: tools/clang/rewrite_to_chrome_style/tests/methods-original.cc
|
| diff --git a/tools/clang/rewrite_to_chrome_style/tests/methods-original.cc b/tools/clang/rewrite_to_chrome_style/tests/methods-original.cc
|
| index 2c9e4ceed5b03055933f5cafbbb34346d47218fc..5736b5047cbbc0dd6919e9fc4aaabd582ff75b6d 100644
|
| --- a/tools/clang/rewrite_to_chrome_style/tests/methods-original.cc
|
| +++ b/tools/clang/rewrite_to_chrome_style/tests/methods-original.cc
|
| @@ -306,6 +306,31 @@ class InternalClass {
|
|
|
| } // namespace internal
|
|
|
| +// Tests for --idl-methods. See also
|
| +// MethodsNamedAfterIdlMatcherState::SetupBlacklistForTesting method.
|
| +class IdlTestClass {
|
| + public:
|
| + static int idlTestMethodNoParams(char x) { return 123; }
|
| + static int idlTestMethodOneParam(char x) { return 123; }
|
| +
|
| + int idlTestMethodNoParams() { return 123; }
|
| + int idlTestMethodNoParams(int x) { return 123; }
|
| +
|
| + int idlTestMethodOneParam() { return 123; }
|
| + int idlTestMethodOneParam(int x) { return 123; }
|
| +
|
| + int IdlTestMethodTwoOrThreeParams() { return 123; }
|
| + int IdlTestMethodTwoOrThreeParams(int x) { return 123; }
|
| + int idlTestMethodTwoOrThreeParams(int x, int y) { return 123; }
|
| + int idlTestMethodTwoOrThreeParams(int x, int y, int z) { return 123; }
|
| +
|
| + int idlTestMethodAnyNumberOfParams() { return 123; }
|
| + int idlTestMethodAnyNumberOfParams(int x) { return 123; }
|
| +
|
| + int path() { return 123; }
|
| + int path(int x) { return 123; }
|
| +};
|
| +
|
| } // namespace blink
|
|
|
| // https://crbug.com/640688 - need to rewrite method name below.
|
|
|