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

Unified Diff: mojo/apps/js/test/handle_unittest.cc

Issue 619493002: Mojo: Convert OVERRIDE -> override in various subdirectories of mojo/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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
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_;

Powered by Google App Engine
This is Rietveld 408576698