| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 namespace blink { | 5 namespace blink { |
| 6 | 6 |
| 7 // Tests that the prototype for a function is updated. | 7 // Tests that the prototype for a function is updated. |
| 8 int testFunctionThatTakesTwoInts(int x, int y); | 8 int testFunctionThatTakesTwoInts(int x, int y); |
| 9 | 9 |
| 10 // Test that the actual function definition is also updated. | 10 // Test that the actual function definition is also updated. |
| 11 int testFunctionThatTakesTwoInts(int x, int y) { | 11 int testFunctionThatTakesTwoInts(int x, int y) { |
| 12 if (x == 0) | 12 if (x == 0) |
| 13 return y; | 13 return y; |
| 14 // Calls to the function also need to be updated. | 14 // Calls to the function also need to be updated. |
| 15 return testFunctionThatTakesTwoInts(x - 1, y + 1); | 15 return testFunctionThatTakesTwoInts(x - 1, y + 1); |
| 16 } | 16 } |
| 17 | 17 |
| 18 // This is named like the begin() method which isn't renamed, but |
| 19 // here it's not a method so it should be. |
| 20 void begin() {} |
| 21 // Same for trace(). |
| 22 void trace() {} |
| 23 |
| 18 // Note: F is already Google style and should not change. | 24 // Note: F is already Google style and should not change. |
| 19 void F() { | 25 void F() { |
| 20 // Test referencing a function without calling it. | 26 // Test referencing a function without calling it. |
| 21 int (*functionPointer)(int, int) = &testFunctionThatTakesTwoInts; | 27 int (*functionPointer)(int, int) = &testFunctionThatTakesTwoInts; |
| 22 } | 28 } |
| 23 | 29 |
| 24 } // namespace blink | 30 } // namespace blink |
| 25 | 31 |
| 26 void G() { | 32 void G() { |
| 27 blink::testFunctionThatTakesTwoInts(1, 2); | 33 blink::testFunctionThatTakesTwoInts(1, 2); |
| 28 } | 34 } |
| OLD | NEW |