Refactoring AudioParameters |operator==| to |Equals()| method
The == operator is re-factored to: bool Equals(const AudioParameters& other) const; This will also help avoid expressions like !(a == b), transforming them to !a.Equals(b) instead. BUG=416506 Review URL: https://codereview.chromium.org/593653003 Cr-Commit-Position: refs/heads/master@{#296230}
Showing
Please register or sign in to comment