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

Unified Diff: chrome/browser/printing/cloud_print/test/cloud_print_proxy_process_browsertest.cc

Issue 624173002: replace OVERRIDE and FINAL with override and final in chrome/browser/[j-q]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master 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/printing/cloud_print/test/cloud_print_proxy_process_browsertest.cc
diff --git a/chrome/browser/printing/cloud_print/test/cloud_print_proxy_process_browsertest.cc b/chrome/browser/printing/cloud_print/test/cloud_print_proxy_process_browsertest.cc
index e03d85c9f2a59f2aeae554a2b75950bb45458a9d..a6fc19e6e4f1b214505298adb472e093e9955b39 100644
--- a/chrome/browser/printing/cloud_print/test/cloud_print_proxy_process_browsertest.cc
+++ b/chrome/browser/printing/cloud_print/test/cloud_print_proxy_process_browsertest.cc
@@ -89,7 +89,7 @@ void ShutdownTask() {
class TestStartupClientChannelListener : public IPC::Listener {
public:
- virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE {
+ virtual bool OnMessageReceived(const IPC::Message& message) override {
return false;
}
};
@@ -304,8 +304,8 @@ class CloudPrintProxyPolicyStartupTest : public base::MultiProcessTest,
CloudPrintProxyPolicyStartupTest();
virtual ~CloudPrintProxyPolicyStartupTest();
- virtual void SetUp() OVERRIDE;
- virtual void TearDown() OVERRIDE;
+ virtual void SetUp() override;
+ virtual void TearDown() override;
scoped_refptr<base::MessageLoopProxy> IOMessageLoopProxy() {
return BrowserThread::GetMessageLoopProxyForThread(BrowserThread::IO);
@@ -316,13 +316,13 @@ class CloudPrintProxyPolicyStartupTest : public base::MultiProcessTest,
void ShutdownAndWaitForExitWithTimeout(base::ProcessHandle handle);
// IPC::Listener implementation
- virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE {
+ virtual bool OnMessageReceived(const IPC::Message& message) override {
return false;
}
- virtual void OnChannelConnected(int32 peer_pid) OVERRIDE;
+ virtual void OnChannelConnected(int32 peer_pid) override;
// MultiProcessTest implementation.
- virtual CommandLine MakeCmdLine(const std::string& procname) OVERRIDE;
+ virtual CommandLine MakeCmdLine(const std::string& procname) override;
bool LaunchBrowser(const CommandLine& command_line, Profile* profile) {
int return_code = 0;

Powered by Google App Engine
This is Rietveld 408576698