Index: chrome/app_shim/chrome_main_app_mode_mac.mm |
diff --git a/chrome/app_shim/chrome_main_app_mode_mac.mm b/chrome/app_shim/chrome_main_app_mode_mac.mm |
index 4e300ac0466e9415000005c7fd17f3c6a717d4f6..5692f7e66d23fb1ccf2200e7b6952551cabbbc1a 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. |