commit | 769b4bf3c99510a8e9ff47f4fd1f6f1054097eb2 | [log] [tgz] |
---|---|---|
author | dcheng <[email protected]> | Fri Jan 09 01:47:32 2015 |
committer | Commit bot <[email protected]> | Fri Jan 09 01:49:30 2015 |
tree | dde454603690a6a8c18cedb8f8d23488bfddedf5 | |
parent | aaa1265b918ee6195ffc84caf970d509bec18b32 [diff] [blame] |
Update {virtual,override,final} for base to follow C++11 style. This patch was automatically generated using a variation of https://codereview.chromium.org/598073004 BUG=417463 Review URL: https://codereview.chromium.org/842993002 Cr-Commit-Position: refs/heads/master@{#310660}
diff --git a/base/mac/scoped_sending_event_unittest.mm b/base/mac/scoped_sending_event_unittest.mm index 95f6eba..02ef2db 100644 --- a/base/mac/scoped_sending_event_unittest.mm +++ b/base/mac/scoped_sending_event_unittest.mm
@@ -27,9 +27,7 @@ ScopedSendingEventTest() : app_([[ScopedSendingEventTestCrApp alloc] init]) { NSApp = app_.get(); } - virtual ~ScopedSendingEventTest() { - NSApp = nil; - } + ~ScopedSendingEventTest() override { NSApp = nil; } private: base::scoped_nsobject<ScopedSendingEventTestCrApp> app_;