Update more directories under src/ to follow C++11 style rule for {virtual,override}.
authortfarina <tfarina@chromium.org>
Tue, 28 Apr 2015 00:18:28 +0000 (17:18 -0700)
committerCommit bot <commit-bot@chromium.org>
Tue, 28 Apr 2015 00:18:28 +0000 (17:18 -0700)
commitf4219ddf31b2171a5576ab98d1fd2deab4d816fd
treefd938d2fd521c322aa98ecdd54c7ce00c4daad73
parent95cc012ccaea20f372893ae277ea0a8a6339d094
Update more directories under src/ to follow C++11 style rule for {virtual,override}.

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/ -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/1110013002
src/animator/SkDisplayMath.h
src/animator/SkDisplayTypes.h
src/animator/SkDraw3D.h
src/animator/SkDrawPaint.h
src/doc/SkDocument_PDF.cpp
src/doc/SkDocument_XPS.cpp
src/pdf/SkPDFStream.h
src/pdf/SkPDFTypes.h