chromiumembedded / cef

Chromium Embedded Framework (CEF). A simple framework for embedding Chromium-based browsers in other applications.
https://bitbucket.org/chromiumembedded/cef/
Other
3.09k stars 450 forks source link

tests: Replace DISALLOW_COPY_AND_ASSIGN with =delete versions #3590

Open magreenblatt opened 8 months ago

magreenblatt commented 8 months ago

Is your feature request related to a problem? Please describe. The DISALLOW_COPY_AND_ASSIGN macro(s) are deprecated and should be removed.

Describe the solution you'd like Same as #3234, but for tests code.

Additional context The current usage of DISALLOW_COPY_AND_ASSIGN is actually wrong in most cases, as it should be in the public section instead of the private section.