| Index: tools/clang/rewrite_to_chrome_style/tests/variables-expected.cc
|
| diff --git a/tools/clang/rewrite_to_chrome_style/tests/variables-expected.cc b/tools/clang/rewrite_to_chrome_style/tests/variables-expected.cc
|
| index 869d1c434bac0dd0de7ac19f37115303fca1a626..8bd127605a35e58d396cb6fb77be7dded61c7d29 100644
|
| --- a/tools/clang/rewrite_to_chrome_style/tests/variables-expected.cc
|
| +++ b/tools/clang/rewrite_to_chrome_style/tests/variables-expected.cc
|
| @@ -9,7 +9,9 @@ int frame_count = 0;
|
| // Make sure that underscore-insertion doesn't get too confused by acronyms.
|
| static int variable_mentioning_http_and_https = 1;
|
| // Already Google style, should not change.
|
| -int already_google_style_;
|
| +int already_google_style;
|
| +// Should still get normalized.
|
| +int goofily_named_variable_for_fun;
|
|
|
| // Function parameters
|
| int Function(int interesting_number) {
|
|
|