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

Unified Diff: ppapi/shared_impl/var_tracker_unittest.cc

Issue 630883002: replace OVERRIDE and FINAL with override and final in ppapi/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 | « ppapi/shared_impl/var.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/shared_impl/var_tracker_unittest.cc
diff --git a/ppapi/shared_impl/var_tracker_unittest.cc b/ppapi/shared_impl/var_tracker_unittest.cc
index 1a4a469ecaf17a2f32bc050ba34a2872968bf3f0..fc089abc10e3bb08ee1a70cd9d5c1f013c746d9a 100644
--- a/ppapi/shared_impl/var_tracker_unittest.cc
+++ b/ppapi/shared_impl/var_tracker_unittest.cc
@@ -29,7 +29,7 @@ class MockObjectVar : public Var {
public:
MockObjectVar() : Var() { mock_var_alive_count++; }
virtual ~MockObjectVar() { mock_var_alive_count--; }
- virtual PP_VarType GetType() const OVERRIDE { return PP_VARTYPE_OBJECT; }
+ virtual PP_VarType GetType() const override { return PP_VARTYPE_OBJECT; }
bool HasValidVarID() { return GetExistingVarID() != 0; }
};
@@ -40,11 +40,11 @@ class VarTrackerTest : public testing::Test {
VarTrackerTest() {}
// Test implementation.
- virtual void SetUp() OVERRIDE {
+ virtual void SetUp() override {
ASSERT_EQ(0, mock_var_alive_count);
ProxyLock::EnableLockingOnThreadForTest();
}
- virtual void TearDown() OVERRIDE {}
+ virtual void TearDown() override {}
VarTracker& var_tracker() { return *globals_.GetVarTracker(); }
« no previous file with comments | « ppapi/shared_impl/var.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698