| Index: tools/clang/rewrite_to_chrome_style/tests/variables-original.cc
|
| diff --git a/tools/clang/rewrite_to_chrome_style/tests/variables-original.cc b/tools/clang/rewrite_to_chrome_style/tests/variables-original.cc
|
| index 84ced2c76aaae559f87856e502444a3d716ee442..de4223eb7bfdc1066879c5174d249ff3ee2a6a0f 100644
|
| --- a/tools/clang/rewrite_to_chrome_style/tests/variables-original.cc
|
| +++ b/tools/clang/rewrite_to_chrome_style/tests/variables-original.cc
|
| @@ -8,8 +8,10 @@ namespace blink {
|
| int frameCount = 0;
|
| // Make sure that underscore-insertion doesn't get too confused by acronyms.
|
| static int variableMentioningHTTPAndHTTPS = 1;
|
| +// g_ prefix, but doesn't follow Google style.
|
| +int g_withBlinkNaming;
|
| // Already Google style, should not change.
|
| -int already_google_style_;
|
| +int g_already_google_style_;
|
|
|
| // Function parameters
|
| int function(int interestingNumber) {
|
|
|