Update {virtual,override} to follow C++11 style in src/utils.
authortfarina <tfarina@chromium.org>
Sat, 25 Apr 2015 19:59:44 +0000 (12:59 -0700)
committerCommit bot <commit-bot@chromium.org>
Sat, 25 Apr 2015 19:59:45 +0000 (12:59 -0700)
commit283b5878e7225a49511cbd3f0fa12603a51319df
tree17a6f1c2cab7f84f34a53f3c6b4f72cf812d16a4
parent130444fdaf737c5931a934018ab50b0c91a3499e
Update {virtual,override} to follow C++11 style in src/utils.

The Google style guide states that only one of {virtual,override,final}
should be used for each declaration, since override implies virtual
and final implies both virtual and override.

The entries were found using the following command line:

$ find src/utils -iname "*.h" -o -iname "*.cpp" | xargs pcregrep -M
"[^\n/]+virtual\ [^;{]+\ [a-zA-Z0-9_]+\([^;{]+\ override[ \n]*[;{]"

The regex was a courtesy of nick@chromium.org

BUG=None
R=mtklein@google.com

Review URL: https://codereview.chromium.org/1099333004
src/utils/SkDeferredCanvas.cpp
src/utils/SkEventTracer.cpp
src/utils/SkTextBox.cpp
src/utils/SkTextureCompressor_Blitter.h
src/utils/debugger/SkDebugCanvas.cpp