Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(38)

Unified Diff: tools/clang/rewrite_to_chrome_style/tests/variables-expected.cc

Issue 1639663003: Clean up rewrite_to_chrome_style naming logic. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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) {

Powered by Google App Engine
This is Rietveld 408576698