Update {virtual,override} to follow C++11 style in src/pipe.
authortfarina <tfarina@chromium.org>
Fri, 24 Apr 2015 20:12:44 +0000 (13:12 -0700)
committerCommit bot <commit-bot@chromium.org>
Fri, 24 Apr 2015 20:12:44 +0000 (13:12 -0700)
commitd96fd0c073fa44a475363003c8f0d25a077edc6c
tree23bc37123026ee3943e84e6308a0a592a9e45538
parent9d9725c892743cf8fc66ea6cdd5ce21fe2df6d14
Update {virtual,override} to follow C++11 style in src/pipe.

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/pipe -iname "*.h" -or -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/1104863003
src/pipe/SkGPipeWrite.cpp