Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (c) 2016 The Chromium Authors. All rights reserved. | |
|
Alexei Svitkine (slow)
2016/09/02 15:19:58
No (c) for new files.
drott
2016/09/02 15:35:54
Done.
| |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef UI_GFX_FONT_NAMES_TESTING_H_ | |
| 6 #define UI_GFX_FONT_NAMES_TESTING_H_ | |
| 7 | |
| 8 namespace gfx { | |
| 9 | |
| 10 #if defined(OS_LINUX) | |
| 11 const char* const symbol_font_name = "Opensymbol"; | |
|
Alexei Svitkine (slow)
2016/09/02 15:19:58
Naming conventions for constants is kSymbolFontNam
drott
2016/09/02 15:35:54
Okay, split into .h and .cc.
| |
| 12 #else | |
| 13 const char* const symbol_font_name = "Symbol"; | |
| 14 #endif | |
| 15 | |
| 16 }; | |
|
Alexei Svitkine (slow)
2016/09/02 15:19:58
No ;
Add a comment // namespace gfx
drott
2016/09/02 15:35:54
Done in header and new .cc file.
| |
| 17 | |
| 18 #endif | |
| OLD | NEW |