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

Unified Diff: content/browser/gamepad/gamepad_service_unittest.cc

Issue 633843002: Replacing the OVERRIDE with override and FINAL with final in content/browser/[dom_storage|gamepad|… (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 | « content/browser/gamepad/gamepad_provider.h ('k') | content/browser/gamepad/gamepad_test_helpers.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/gamepad/gamepad_service_unittest.cc
diff --git a/content/browser/gamepad/gamepad_service_unittest.cc b/content/browser/gamepad/gamepad_service_unittest.cc
index ff527f5437908927c129c98a453359d2f510fcfc..5acf3ebcf55fbd1b4572c8a33d6e7f9343c8684b 100644
--- a/content/browser/gamepad/gamepad_service_unittest.cc
+++ b/content/browser/gamepad/gamepad_service_unittest.cc
@@ -26,12 +26,12 @@ class ConnectionListener : public GamepadConsumer {
virtual void OnGamepadConnected(
unsigned index,
- const blink::WebGamepad& gamepad) OVERRIDE {
+ const blink::WebGamepad& gamepad) override {
connected_counter_++;
}
virtual void OnGamepadDisconnected(
unsigned index,
- const blink::WebGamepad& gamepad) OVERRIDE {
+ const blink::WebGamepad& gamepad) override {
disconnected_counter_++;
}
@@ -51,7 +51,7 @@ class ConnectionListener : public GamepadConsumer {
class GamepadServiceTest : public testing::Test {
protected:
GamepadServiceTest();
- virtual ~GamepadServiceTest() OVERRIDE;
+ virtual ~GamepadServiceTest() override;
void SetPadsConnected(bool connected);
void WaitForData();
@@ -63,7 +63,7 @@ class GamepadServiceTest : public testing::Test {
return connection_listener_->disconnected_counter();
}
- virtual void SetUp() OVERRIDE;
+ virtual void SetUp() override;
private:
MockGamepadDataFetcher* fetcher_;
« no previous file with comments | « content/browser/gamepad/gamepad_provider.h ('k') | content/browser/gamepad/gamepad_test_helpers.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698