Commit 171abf61 authored by Takuto Ikuta's avatar Takuto Ikuta Committed by Commit Bot

Add override for overridden functions under /gin

This CL was uploaded by git cl split.

R=jochen@chromium.org

Bug: 428099
Change-Id: Ibf3ee895938492cad26720d8b1d00a9fb102b033
Reviewed-on: https://chromium-review.googlesource.com/1032466
Commit-Queue: Takuto Ikuta <tikuta@chromium.org>
Reviewed-by: default avatarJochen Eisinger <jochen@chromium.org>
Cr-Commit-Position: refs/heads/master@{#554402}
parent 2b1dc5eb
...@@ -77,7 +77,7 @@ class CallbackHolder : public CallbackHolderBase { ...@@ -77,7 +77,7 @@ class CallbackHolder : public CallbackHolderBase {
InvokerOptions invoker_options; InvokerOptions invoker_options;
private: private:
virtual ~CallbackHolder() {} ~CallbackHolder() override {}
DISALLOW_COPY_AND_ASSIGN(CallbackHolder); DISALLOW_COPY_AND_ASSIGN(CallbackHolder);
}; };
......
...@@ -100,7 +100,7 @@ class Wrappable : public WrappableBase { ...@@ -100,7 +100,7 @@ class Wrappable : public WrappableBase {
protected: protected:
Wrappable() {} Wrappable() {}
virtual ~Wrappable() {} ~Wrappable() override {}
private: private:
DISALLOW_COPY_AND_ASSIGN(Wrappable); DISALLOW_COPY_AND_ASSIGN(Wrappable);
......
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