| Index: tools/clang/rewrite_to_chrome_style/tests/functions-original.cc
|
| diff --git a/tools/clang/rewrite_to_chrome_style/tests/functions-original.cc b/tools/clang/rewrite_to_chrome_style/tests/functions-original.cc
|
| index 14530c6570af943f1a6321c360e97ce1bc7fef05..eb5e0ecbde75ffaf699e7275f6747895ebff304e 100644
|
| --- a/tools/clang/rewrite_to_chrome_style/tests/functions-original.cc
|
| +++ b/tools/clang/rewrite_to_chrome_style/tests/functions-original.cc
|
| @@ -36,8 +36,15 @@ void F() {
|
| int (*functionPointer)(int, int) = &testFunctionThatTakesTwoInts;
|
| }
|
|
|
| +void bug640688(int); // Declaration within blink namespace.
|
| +
|
| } // namespace blink
|
|
|
| +// Definition outside of blink namespace.
|
| +void blink::bug640688(int myParam) {
|
| + char myVariable = 'c';
|
| +}
|
| +
|
| using blink::testFunctionThatTakesTwoInts;
|
|
|
| void G() {
|
|
|