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

Unified Diff: chrome/browser/chromeos/net/network_portal_detector_impl_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
Index: chrome/browser/chromeos/net/network_portal_detector_impl_browsertest.cc
diff --git a/chrome/browser/chromeos/net/network_portal_detector_impl_browsertest.cc b/chrome/browser/chromeos/net/network_portal_detector_impl_browsertest.cc
index d9a52ee7735054064d19f9fd275506e51356916e..e7495946c178898762eb262877bf27d464d41830 100644
--- a/chrome/browser/chromeos/net/network_portal_detector_impl_browsertest.cc
+++ b/chrome/browser/chromeos/net/network_portal_detector_impl_browsertest.cc
@@ -73,13 +73,13 @@ class TestObserver : public MessageCenterObserver {
virtual void OnNotificationDisplayed(
const std::string& notification_id,
const message_center::DisplaySource source)
- OVERRIDE {
+ override {
if (notification_id == kNotificationId)
MessageLoop::current()->PostTask(FROM_HERE, run_loop_->QuitClosure());
}
virtual void OnNotificationRemoved(const std::string& notification_id,
- bool by_user) OVERRIDE {
+ bool by_user) override {
if (notification_id == kNotificationId && by_user)
MessageLoop::current()->PostTask(FROM_HERE, run_loop_->QuitClosure());
}
@@ -100,7 +100,7 @@ class NetworkPortalDetectorImplBrowserTest
: LoginManagerTest(false), network_portal_detector_(NULL) {}
virtual ~NetworkPortalDetectorImplBrowserTest() {}
- virtual void SetUpOnMainThread() OVERRIDE {
+ virtual void SetUpOnMainThread() override {
LoginManagerTest::SetUpOnMainThread();
ShillServiceClient::TestInterface* service_test =

Powered by Google App Engine
This is Rietveld 408576698