commit | de9a745188b1b3d76b09718b46266bc04084b5b1 | [log] [tgz] |
---|---|---|
author | Asami Doi <asamidoi@chromium.org> | Mon Apr 28 14:41:55 2025 |
committer | Chromium LUCI CQ <chromium-scoped@luci-project-accounts.iam.gserviceaccount.com> | Mon Apr 28 14:41:55 2025 |
tree | 2001ec722c24116cc8915b5b2b60edfa5d6aa961 | |
parent | 0da6af55c9bd8181bba2bf8f2fa9101b81d35c1d [diff] |
[ios] Replace all strong NSString* with copy This CL replaces all strong NSStrings with a copy keyword. Also, manually checked all updates and call the copy method if necessary. for file in $(git grep -l "@property\(.*strong.*\) NSString" ./ios); do sed -i '' -e 's/\(@property(.*\), strong\(.*)\)\( NSString\)/\1, copy\2\3/' "$file" sed -i '' -e 's/\(@property(.*\)strong, \(.*)\)\(NSString\)/\1copy, \2\3/' "$file" done This CL was uploaded by git cl split. R=olivierrobin@chromium.org Bug: 413648986 Change-Id: I13797b541de7370180b89935f63bfc586dd8b050 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/6495188 Auto-Submit: Asami Doi <asamidoi@chromium.org> Reviewed-by: Olivier Robin <olivierrobin@chromium.org> Commit-Queue: Olivier Robin <olivierrobin@chromium.org> Cr-Commit-Position: refs/heads/main@{#1452613}
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.
If you found a bug, please file it at https://crbug.com/new.