Index: mojo/apps/js/test/handle_unittest.cc |
diff --git a/mojo/apps/js/test/handle_unittest.cc b/mojo/apps/js/test/handle_unittest.cc |
index e4e8edf78bacae0330f811711727a2237114a45e..ec089c91ba318cfe4d131c9b54e345a2ae20b5fd 100644 |
--- a/mojo/apps/js/test/handle_unittest.cc |
+++ b/mojo/apps/js/test/handle_unittest.cc |
@@ -2,6 +2,7 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
+#include "base/macros.h" |
#include "mojo/bindings/js/handle.h" |
#include "mojo/bindings/js/handle_close_observer.h" |
#include "mojo/public/cpp/system/core.h" |
@@ -15,7 +16,7 @@ class HandleWrapperTest : public testing::Test, |
public: |
HandleWrapperTest() : closes_observed_(0) {} |
- virtual void OnWillCloseHandle() OVERRIDE { closes_observed_++; } |
+ virtual void OnWillCloseHandle() override { closes_observed_++; } |
protected: |
int closes_observed_; |