commit | 3553e270f7c789638392657facab9b1e2083de10 | [log] [tgz] |
---|---|---|
author | Daniel Hosseinian <[email protected]> | Sat Apr 24 00:51:18 2021 |
committer | Chromium LUCI CQ <[email protected]> | Sat Apr 24 00:51:18 2021 |
tree | e9a4dcb1d37ea10315a5741505878952bc5539a5 | |
parent | b8c3af6ab7168f025c982a2a675f8c1c1251969b [diff] |
[cleanup] Wrap comment variable names with backticks in //printing/ The Chromium C++ Dos and Don'ts [1] was changed to encourage wrapping variable names in comments with backticks (`) instead of pipes (|). Update all comments in the //printing/ directory so a consistent style is used. The update was performed automagically with the following command: grep -rl '|' --include \*.h --include \*.cc printing/ | \ xargs perl -i -pe 's/(?<=\W)\||\|(?=\W)/`/g if /^\s*\/\//;' The above command assumes that the comments of interest only start with "//" and are not wrapped in "/*...*/". Meanwhile, fix some old typos caught by tricium. [1] https://chromium.googlesource.com/chromium/src/+/463a912f0a01a08e6cb9a6f57f6ca0489c99a9fa/styleguide/c++/c++-dos-and-donts.md#comment-style Change-Id: I7f70e041c7512a5068cbe690b1ef0e3bd1247e5d Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2849013 Commit-Queue: Daniel Hosseinian <[email protected]> Commit-Queue: Lei Zhang <[email protected]> Auto-Submit: Daniel Hosseinian <[email protected]> Reviewed-by: Lei Zhang <[email protected]> Cr-Commit-Position: refs/heads/master@{#875940}
Chromium is an open-source browser project that aims to build a safer, faster, and more stable way for all users to experience the web.
The project's web site is https://www.chromium.org.
To check out the source code locally, don't use git clone
! Instead, follow the instructions on how to get the code.
Documentation in the source is rooted in docs/README.md.
Learn how to Get Around the Chromium Source Code Directory Structure .
For historical reasons, there are some small top level directories. Now the guidance is that new top level directories are for product (e.g. Chrome, Android WebView, Ash). Even if these products have multiple executables, the code should be in subdirectories of the product.