| Index: tools/clang/rewrite_to_chrome_style/tests/functions-expected.cc
|
| diff --git a/tools/clang/rewrite_to_chrome_style/tests/functions-expected.cc b/tools/clang/rewrite_to_chrome_style/tests/functions-expected.cc
|
| index ed8928b68913992eeb5644cb6fab72302b4bfa42..304e3ef50b9d2456c2d1b884cabe005f83069471 100644
|
| --- a/tools/clang/rewrite_to_chrome_style/tests/functions-expected.cc
|
| +++ b/tools/clang/rewrite_to_chrome_style/tests/functions-expected.cc
|
| @@ -36,8 +36,15 @@ void F() {
|
| int (*function_pointer)(int, int) = &TestFunctionThatTakesTwoInts;
|
| }
|
|
|
| +void Bug640688(int); // Declaration within blink namespace.
|
| +
|
| } // namespace blink
|
|
|
| +// Definition outside of blink namespace.
|
| +void blink::Bug640688(int my_param) {
|
| + char my_variable = 'c';
|
| +}
|
| +
|
| using blink::TestFunctionThatTakesTwoInts;
|
|
|
| void G() {
|
|
|