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

Unified Diff: chrome/utility/importer/firefox_importer_unittest_utils_mac.cc

Issue 638863002: Replace FINAL and OVERRIDE with their C++11 counterparts in chrome/utility (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 | « chrome/utility/importer/firefox_importer.h ('k') | chrome/utility/importer/ie_importer_win.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/utility/importer/firefox_importer_unittest_utils_mac.cc
diff --git a/chrome/utility/importer/firefox_importer_unittest_utils_mac.cc b/chrome/utility/importer/firefox_importer_unittest_utils_mac.cc
index 3e8060bcbfba42bfa1076ba1ff7fd7ebe6edf0ba..782acaceb12329418e53f99efb94cd552f43d445 100644
--- a/chrome/utility/importer/firefox_importer_unittest_utils_mac.cc
+++ b/chrome/utility/importer/firefox_importer_unittest_utils_mac.cc
@@ -103,7 +103,7 @@ class FFDecryptorServerChannelListener : public IPC::Listener {
sender_->Send(new Msg_Decryptor_Quit());
}
- virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE {
+ virtual bool OnMessageReceived(const IPC::Message& msg) override {
bool handled = true;
IPC_BEGIN_MESSAGE_MAP(FFDecryptorServerChannelListener, msg)
IPC_MESSAGE_HANDLER(Msg_Decryptor_InitReturnCode, OnInitDecryptorResponse)
@@ -115,7 +115,7 @@ class FFDecryptorServerChannelListener : public IPC::Listener {
}
// If an error occured, just kill the message Loop.
- virtual void OnChannelError() OVERRIDE {
+ virtual void OnChannelError() override {
got_result = false;
base::MessageLoop::current()->Quit();
}
@@ -264,7 +264,7 @@ class FFDecryptorClientChannelListener : public IPC::Listener {
base::MessageLoop::current()->Quit();
}
- virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE {
+ virtual bool OnMessageReceived(const IPC::Message& msg) override {
bool handled = true;
IPC_BEGIN_MESSAGE_MAP(FFDecryptorClientChannelListener, msg)
IPC_MESSAGE_HANDLER(Msg_Decryptor_Init, OnDecryptor_Init)
@@ -276,7 +276,7 @@ class FFDecryptorClientChannelListener : public IPC::Listener {
return handled;
}
- virtual void OnChannelError() OVERRIDE {
+ virtual void OnChannelError() override {
base::MessageLoop::current()->Quit();
}
« no previous file with comments | « chrome/utility/importer/firefox_importer.h ('k') | chrome/utility/importer/ie_importer_win.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698