Commit 3ea7b719 authored by Robert Liao's avatar Robert Liao Committed by Commit Bot

Run clang-tidy modernize-use-override on //ui/views/*

This is a run of
run-clang-tidy.py -checks="-*,modernize-use-override" -header-filter=ui/views/* \\src\\ui\\views\\

BUG=940732
TBR=sky@chromium.org

Change-Id: I30fd8d209039d7f357ae38b240afd4b110e8f94d
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1530839Reviewed-by: default avatarRobert Liao <robliao@chromium.org>
Commit-Queue: Robert Liao <robliao@chromium.org>
Cr-Commit-Position: refs/heads/master@{#642313}
parent f13a6c4c
...@@ -27,7 +27,7 @@ enum InkDropType { INK_DROP_STUB, INK_DROP_IMPL }; ...@@ -27,7 +27,7 @@ enum InkDropType { INK_DROP_STUB, INK_DROP_IMPL };
class InkDropTest : public testing::TestWithParam<testing::tuple<InkDropType>> { class InkDropTest : public testing::TestWithParam<testing::tuple<InkDropType>> {
public: public:
InkDropTest(); InkDropTest();
~InkDropTest(); ~InkDropTest() override;
protected: protected:
// A dummy InkDropHost required to create an InkDrop. // A dummy InkDropHost required to create an InkDrop.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment