Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3785)

Unified Diff: mojo/services/html_viewer/ax_provider_impl_unittest.cc

Issue 1037363002: Remove unnecessary 'virtual' annotation from mojo (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Resolved merge conflicts Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « AUTHORS ('k') | mojo/services/html_viewer/blink_platform_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/services/html_viewer/ax_provider_impl_unittest.cc
diff --git a/mojo/services/html_viewer/ax_provider_impl_unittest.cc b/mojo/services/html_viewer/ax_provider_impl_unittest.cc
index b001e2512db44171d84726fe9fd6ac45fd6fce52..a7ffac236de7d823bf1b6eaefdcd53a2a44701be 100644
--- a/mojo/services/html_viewer/ax_provider_impl_unittest.cc
+++ b/mojo/services/html_viewer/ax_provider_impl_unittest.cc
@@ -33,13 +33,13 @@ namespace {
class TestWebFrameClient : public WebFrameClient {
public:
- virtual ~TestWebFrameClient() {}
- virtual void didStopLoading() { base::MessageLoop::current()->Quit(); }
+ ~TestWebFrameClient() override {}
+ void didStopLoading() override { base::MessageLoop::current()->Quit(); }
};
class TestWebViewClient : public WebViewClient {
public:
- virtual bool allowsBrokenNullLayerTreeView() const { return true; }
+ bool allowsBrokenNullLayerTreeView() const override { return true; }
virtual ~TestWebViewClient() {}
};
« no previous file with comments | « AUTHORS ('k') | mojo/services/html_viewer/blink_platform_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698