summaryrefslogtreecommitdiffstats
path: root/chrome/app_shim
diff options
context:
space:
mode:
authordcheng <dcheng@chromium.org>2014-10-21 04:55:49 -0700
committerCommit bot <commit-bot@chromium.org>2014-10-21 11:56:04 +0000
commite59c1bb95b7f2f381d6a0c38c6f6f1c9a89c4ed4 (patch)
tree705b50a14d658317d5a3d0dc262cf5816065c5dc /chrome/app_shim
parent1ca8a7c75b0eb927301d4168722637b7235c41a6 (diff)
downloadchromium_src-e59c1bb95b7f2f381d6a0c38c6f6f1c9a89c4ed4.zip
chromium_src-e59c1bb95b7f2f381d6a0c38c6f6f1c9a89c4ed4.tar.gz
chromium_src-e59c1bb95b7f2f381d6a0c38c6f6f1c9a89c4ed4.tar.bz2
Standardize usage of virtual/override/final in chrome/
This patch was automatically generated by applying clang fixit hints generated by the plugin to the source tree. BUG=417463 TBR=thestig@chromium.org Review URL: https://codereview.chromium.org/653773004 Cr-Commit-Position: refs/heads/master@{#300465}
Diffstat (limited to 'chrome/app_shim')
-rw-r--r--chrome/app_shim/chrome_main_app_mode_mac.mm6
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/app_shim/chrome_main_app_mode_mac.mm b/chrome/app_shim/chrome_main_app_mode_mac.mm
index 4e300ac..5692f7e 100644
--- a/chrome/app_shim/chrome_main_app_mode_mac.mm
+++ b/chrome/app_shim/chrome_main_app_mode_mac.mm
@@ -88,7 +88,7 @@ class AppShimController;
class AppShimController : public IPC::Listener {
public:
AppShimController();
- virtual ~AppShimController();
+ ~AppShimController() override;
// Called when the main Chrome process responds to the Apple Event ping that
// was sent, or when the ping fails (if |success| is false).
@@ -119,8 +119,8 @@ class AppShimController : public IPC::Listener {
private:
// IPC::Listener implemetation.
- virtual bool OnMessageReceived(const IPC::Message& message) override;
- virtual void OnChannelError() override;
+ bool OnMessageReceived(const IPC::Message& message) override;
+ void OnChannelError() override;
// If Chrome failed to launch the app, |success| will be false and the app
// shim process should die.