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

Unified Diff: chrome/service/service_utility_process_host.h

Issue 1100223002: Update {virtual,override} to follow C++11 style in chrome. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase 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 | « chrome/service/cloud_print/print_system_win.cc ('k') | chrome/service/service_utility_process_host.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/service/service_utility_process_host.h
diff --git a/chrome/service/service_utility_process_host.h b/chrome/service/service_utility_process_host.h
index db9d88489892e96fa2decfc3469fb043d5a01d4a..a69c7ac8f057052a25139779da98f08d701a34fc 100644
--- a/chrome/service/service_utility_process_host.h
+++ b/chrome/service/service_utility_process_host.h
@@ -85,7 +85,7 @@ class ServiceUtilityProcessHost : public content::ChildProcessHostDelegate {
ServiceUtilityProcessHost(Client* client,
base::MessageLoopProxy* client_message_loop_proxy);
- virtual ~ServiceUtilityProcessHost();
+ ~ServiceUtilityProcessHost() override;
// Starts a process to render the specified pages in the given PDF file into
// a metafile. Currently only implemented for Windows. If the PDF has fewer
@@ -113,9 +113,9 @@ class ServiceUtilityProcessHost : public content::ChildProcessHostDelegate {
virtual base::FilePath GetUtilityProcessCmd();
// ChildProcessHostDelegate implementation:
- virtual void OnChildDisconnected() override;
- virtual bool OnMessageReceived(const IPC::Message& message) override;
- virtual const base::Process& GetProcess() const override;
+ void OnChildDisconnected() override;
+ bool OnMessageReceived(const IPC::Message& message) override;
+ const base::Process& GetProcess() const override;
private:
// Starts a process. Returns true iff it succeeded.
« no previous file with comments | « chrome/service/cloud_print/print_system_win.cc ('k') | chrome/service/service_utility_process_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698