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

Unified Diff: cloud_print/service/win/chrome_launcher.h

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
Index: cloud_print/service/win/chrome_launcher.h
diff --git a/cloud_print/service/win/chrome_launcher.h b/cloud_print/service/win/chrome_launcher.h
index 073add75d7423b7a54000132ea5489854ec56de1..189bbc740c2c87bae92866e59e4d4de52fbd6ec3 100644
--- a/cloud_print/service/win/chrome_launcher.h
+++ b/cloud_print/service/win/chrome_launcher.h
@@ -17,12 +17,13 @@ class ChromeLauncher : public base::DelegateSimpleThread::Delegate {
public:
explicit ChromeLauncher(const base::FilePath& user_data);
- virtual ~ChromeLauncher();
+ ~ChromeLauncher() override;
bool Start();
void Stop();
- virtual void Run() override;
+ // base::DelegateSimpleThread::Delegate:
+ void Run() override;
static std::string CreateServiceStateFile(
const std::string& proxy_id,
« no previous file with comments | « cloud_print/gcp20/prototype/privet_http_server.h ('k') | cloud_print/service/win/cloud_print_service_config.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698