| Index: tools/clang/rewrite_to_chrome_style/tests/constants-expected.cc
|
| diff --git a/tools/clang/rewrite_to_chrome_style/tests/constants-expected.cc b/tools/clang/rewrite_to_chrome_style/tests/constants-expected.cc
|
| index 552b80d6b55a1f83d7d99286383777917a5ca67b..0d02e9b8886dd13475851ba6ba6fc6b42b4f2236 100644
|
| --- a/tools/clang/rewrite_to_chrome_style/tests/constants-expected.cc
|
| +++ b/tools/clang/rewrite_to_chrome_style/tests/constants-expected.cc
|
| @@ -8,6 +8,8 @@ namespace blink {
|
| const char kHelloWorldConstant[] = "Hello world!";
|
| // Make sure a one-character constant doesn't get mangled.
|
| const float kE = 2.718281828;
|
| +// Some constants start with a capital letter already.
|
| +const int kSpeedOfLightInMetresPerSecond = 299792458;
|
|
|
| // Already Chrome style, so shouldn't change.
|
| const float kPi = 3.141592654;
|
|
|