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

Unified Diff: cloud_print/service/win/cloud_print_service_config.cc

Issue 1100633004: Update {virtual,override} to follow C++11 style in cloud_print. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix compile. Created 5 years, 8 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 | « cloud_print/service/win/chrome_launcher.h ('k') | cloud_print/service/win/service_listener.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cloud_print/service/win/cloud_print_service_config.cc
diff --git a/cloud_print/service/win/cloud_print_service_config.cc b/cloud_print/service/win/cloud_print_service_config.cc
index 9eeeee35c37cd90a13cd48c78ccbc31cf23edacd..a0f5044d4cd1d336fec9736dc526eee0893ed674 100644
--- a/cloud_print/service/win/cloud_print_service_config.cc
+++ b/cloud_print/service/win/cloud_print_service_config.cc
@@ -34,10 +34,10 @@ class SetupDialog : public base::RefCounted<SetupDialog>,
class Dispatcher : public base::MessagePumpDispatcher {
public:
explicit Dispatcher(SetupDialog* dialog) : dialog_(dialog) {}
- virtual ~Dispatcher() {};
+ ~Dispatcher() override {}
// MessagePumpDispatcher:
- virtual uint32_t Dispatch(const MSG& msg) override {
+ uint32_t Dispatch(const MSG& msg) override {
MSG msg2 = msg;
uint32_t action = POST_DISPATCH_NONE;
if (!dialog_->IsDialogMessage(&msg2))
« no previous file with comments | « cloud_print/service/win/chrome_launcher.h ('k') | cloud_print/service/win/service_listener.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698