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

Unified Diff: extensions/browser/api/bluetooth/bluetooth_private_apitest.cc

Issue 622343002: replace OVERRIDE and FINAL with override and final in extensions/ (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
Index: extensions/browser/api/bluetooth/bluetooth_private_apitest.cc
diff --git a/extensions/browser/api/bluetooth/bluetooth_private_apitest.cc b/extensions/browser/api/bluetooth/bluetooth_private_apitest.cc
index 186462f1ac6ce9efd7c02010b7208f7ae19da79d..af49ec9dbe1fa5cc0d92f65db6e738076c8fefa8 100644
--- a/extensions/browser/api/bluetooth/bluetooth_private_apitest.cc
+++ b/extensions/browser/api/bluetooth/bluetooth_private_apitest.cc
@@ -46,7 +46,7 @@ class BluetoothPrivateApiTest : public ExtensionApiTest {
virtual ~BluetoothPrivateApiTest() {}
- virtual void SetUpOnMainThread() OVERRIDE {
+ virtual void SetUpOnMainThread() override {
CommandLine::ForCurrentProcess()->AppendSwitchASCII(
switches::kWhitelistedExtensionID, kTestExtensionId);
mock_adapter_ = new NiceMock<MockBluetoothAdapter>();
@@ -62,7 +62,7 @@ class BluetoothPrivateApiTest : public ExtensionApiTest {
ON_CALL(*mock_adapter_.get(), IsPresent()).WillByDefault(Return(true));
}
- virtual void TearDownOnMainThread() OVERRIDE {}
+ virtual void TearDownOnMainThread() override {}
BluetoothEventRouter* event_router() {
return BluetoothAPI::Get(browser()->profile())->event_router();

Powered by Google App Engine
This is Rietveld 408576698