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

Unified Diff: content/test/ppapi_unittest.h

Issue 686523002: Standardize usage of virtual/override/final specifiers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 6 years, 2 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 | « content/test/image_decoder_test.h ('k') | content/test/test_render_view_host.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/test/ppapi_unittest.h
diff --git a/content/test/ppapi_unittest.h b/content/test/ppapi_unittest.h
index eb4f3b9fe458b370daa190c098283518faa14254..15926c1718f0941fc9c4ef1f904bab03e5c97647 100644
--- a/content/test/ppapi_unittest.h
+++ b/content/test/ppapi_unittest.h
@@ -22,10 +22,10 @@ class PluginModule;
class PpapiUnittest : public testing::Test {
public:
PpapiUnittest();
- virtual ~PpapiUnittest();
+ ~PpapiUnittest() override;
- virtual void SetUp();
- virtual void TearDown();
+ void SetUp() override;
+ void TearDown() override;
PluginModule* module() const { return module_.get(); }
PepperPluginInstanceImpl* instance() const { return instance_.get(); }
« no previous file with comments | « content/test/image_decoder_test.h ('k') | content/test/test_render_view_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698