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

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

Issue 1839573002: rewrite_to_chrome_style: making globals great again. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: comments Created 4 years, 9 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-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) {

Powered by Google App Engine
This is Rietveld 408576698