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

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

Issue 1557243002: Update rewrite_to_chrome_style tool to also rename methods. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add constant test case 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 unified diff | Download patch
« no previous file with comments | « tools/clang/rewrite_to_chrome_style/tests/variables-expected.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 // Global variables 7 // Global variables
8 int frameCount = 0; 8 int frameCount = 0;
9 // Make sure that underscore-insertion doesn't get too confused by acronyms. 9 // Make sure that underscore-insertion doesn't get too confused by acronyms.
10 static int variableMentioningHTTPAndHTTPS = 1; 10 static int variableMentioningHTTPAndHTTPS = 1;
11 // Already Google style, should not change. 11 // Already Google style, should not change.
12 int already_google_style_; 12 int already_google_style_;
13 13
14 // Function parameters 14 // Function parameters
15 int function(int interestingNumber) { 15 int function(int interestingNumber) {
16 // Local variables. 16 // Local variables.
17 int aLocalVariable = 1; 17 int aLocalVariable = 1;
18 // Static locals. 18 // Static locals.
19 static int aStaticLocalVariable = 2; 19 static int aStaticLocalVariable = 2;
20 // Make sure references to variables are also rewritten. 20 // Make sure references to variables are also rewritten.
21 return frameCount + 21 return frameCount +
22 variableMentioningHTTPAndHTTPS * interestingNumber / aLocalVariable % 22 variableMentioningHTTPAndHTTPS * interestingNumber / aLocalVariable %
23 aStaticLocalVariable; 23 aStaticLocalVariable;
24 } 24 }
25 25
26 } // namespace blink 26 } // namespace blink
27
28 int F() {
29 // Make sure variables qualified with a namespace name are still rewritten
30 // correctly.
31 return blink::frameCount;
32 }
OLDNEW
« no previous file with comments | « tools/clang/rewrite_to_chrome_style/tests/variables-expected.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698