[chromium-style] override / virtual warnings
This commit is contained in:
parent
a635f078c6
commit
e6695cf2ec
62 changed files with 106 additions and 106 deletions
|
@ -29,7 +29,7 @@ namespace extensions {
|
|||
class GlobalShortcutListenerMac : public GlobalShortcutListener {
|
||||
public:
|
||||
GlobalShortcutListenerMac();
|
||||
virtual ~GlobalShortcutListenerMac();
|
||||
~GlobalShortcutListenerMac() override;
|
||||
|
||||
private:
|
||||
typedef int KeyId;
|
||||
|
@ -42,11 +42,11 @@ class GlobalShortcutListenerMac : public GlobalShortcutListener {
|
|||
bool OnMediaOrVolumeKeyEvent(int key_code);
|
||||
|
||||
// GlobalShortcutListener implementation.
|
||||
virtual void StartListening() override;
|
||||
virtual void StopListening() override;
|
||||
virtual bool RegisterAcceleratorImpl(
|
||||
void StartListening() override;
|
||||
void StopListening() override;
|
||||
bool RegisterAcceleratorImpl(
|
||||
const ui::Accelerator& accelerator) override;
|
||||
virtual void UnregisterAcceleratorImpl(
|
||||
void UnregisterAcceleratorImpl(
|
||||
const ui::Accelerator& accelerator) override;
|
||||
|
||||
// Mac-specific functions for registering hot keys with modifiers.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue