[ios] Stop using global static std::string objects
Using global static non-POD object is against the style guide when they have a destructor (which std::string does) as the destructors are called in an order that is not controllable and they can cause issue during shutdown. Bug: none Change-Id: I8967d86d029004bc66912ae6b28f2be59633dd08 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2640535 Commit-Queue: Sylvain Defresne <sdefresne@chromium.org> Reviewed-by:David Jean <djean@chromium.org> Cr-Commit-Position: refs/heads/master@{#846067}
Showing
Please register or sign in to comment