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

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

Issue 12212048: Linux/ChromeOS Chromium style checker cleanup, chrome/browser edition. (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 7 years, 10 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
===================================================================
--- chrome/browser/printing/cloud_print/test/cloud_print_proxy_process_browsertest.cc (revision 181040)
+++ chrome/browser/printing/cloud_print/test/cloud_print_proxy_process_browsertest.cc (working copy)
@@ -80,7 +80,9 @@
class TestStartupClientChannelListener : public IPC::Listener {
public:
- virtual bool OnMessageReceived(const IPC::Message& message) { return false; }
+ virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE {
+ return false;
+ }
};
} // namespace
@@ -283,7 +285,7 @@
public IPC::Listener {
public:
CloudPrintProxyPolicyStartupTest();
- ~CloudPrintProxyPolicyStartupTest();
+ virtual ~CloudPrintProxyPolicyStartupTest();
virtual void SetUp();
base::MessageLoopProxy* IOMessageLoopProxy() {
@@ -295,8 +297,10 @@
void ShutdownAndWaitForExitWithTimeout(base::ProcessHandle handle);
// IPC::Listener implementation
- virtual bool OnMessageReceived(const IPC::Message& message) { return false; }
- virtual void OnChannelConnected(int32 peer_pid);
+ virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE {
+ return false;
+ }
+ virtual void OnChannelConnected(int32 peer_pid) OVERRIDE;
// MultiProcessTest implementation.
virtual CommandLine MakeCmdLine(const std::string& procname,

Powered by Google App Engine
This is Rietveld 408576698