| Index: tools/clang/rewrite_to_chrome_style/tests/methods-expected.cc
|
| diff --git a/tools/clang/rewrite_to_chrome_style/tests/methods-expected.cc b/tools/clang/rewrite_to_chrome_style/tests/methods-expected.cc
|
| index 766145e4f422e2db9025a97b130530bfd4de7d06..86a2b44aeca1eb74300e138bd8ee10e29961f1a7 100644
|
| --- a/tools/clang/rewrite_to_chrome_style/tests/methods-expected.cc
|
| +++ b/tools/clang/rewrite_to_chrome_style/tests/methods-expected.cc
|
| @@ -189,3 +189,15 @@ void F2() {
|
| WTF::StructInWTF w;
|
| w.Function();
|
| }
|
| +
|
| +namespace blink {
|
| +
|
| +class ClassDeclaredInsideBlink {
|
| + public:
|
| + static void MethodDefinedOutsideBlink();
|
| +};
|
| +
|
| +} // namespace blink
|
| +
|
| +// https://crbug.com/640688 - need to rewrite method name below.
|
| +void blink::ClassDeclaredInsideBlink::MethodDefinedOutsideBlink() {}
|
|
|