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

Unified Diff: chrome/browser/chromeos/device/input_service_proxy_browsertest.cc

Issue 623293003: replace OVERRIDE and FINAL with override and final in chrome/browser/chromeos/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: run git cl format on echo_dialog_view.h 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 | « chrome/browser/chromeos/device/input_service_proxy.cc ('k') | chrome/browser/chromeos/device_uma.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/device/input_service_proxy_browsertest.cc
diff --git a/chrome/browser/chromeos/device/input_service_proxy_browsertest.cc b/chrome/browser/chromeos/device/input_service_proxy_browsertest.cc
index d55451d232e5b252f98a74d489664f548c0d2120..93fd7feb30ad610e33f25163365f665b747e9ced 100644
--- a/chrome/browser/chromeos/device/input_service_proxy_browsertest.cc
+++ b/chrome/browser/chromeos/device/input_service_proxy_browsertest.cc
@@ -41,14 +41,14 @@ class TestObserver : public InputServiceProxy::Observer {
: wait_for_device_addition_(false), wait_for_device_removal_(false) {}
virtual ~TestObserver() {}
- virtual void OnInputDeviceAdded(const InputDeviceInfo& info) OVERRIDE {
+ virtual void OnInputDeviceAdded(const InputDeviceInfo& info) override {
if (!wait_for_device_addition_)
return;
EXPECT_TRUE(Equals(expected_info_, info));
done_.Run();
}
- virtual void OnInputDeviceRemoved(const std::string& id) OVERRIDE {
+ virtual void OnInputDeviceRemoved(const std::string& id) override {
if (!wait_for_device_removal_)
return;
EXPECT_EQ(expected_id_, id);
« no previous file with comments | « chrome/browser/chromeos/device/input_service_proxy.cc ('k') | chrome/browser/chromeos/device_uma.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698