summaryrefslogtreecommitdiffstats
path: root/src/core/renderer_host/web_channel_ipc_transport_host.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/renderer_host/web_channel_ipc_transport_host.h')
-rw-r--r--src/core/renderer_host/web_channel_ipc_transport_host.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/renderer_host/web_channel_ipc_transport_host.h b/src/core/renderer_host/web_channel_ipc_transport_host.h
index 75b40477e..aa406471c 100644
--- a/src/core/renderer_host/web_channel_ipc_transport_host.h
+++ b/src/core/renderer_host/web_channel_ipc_transport_host.h
@@ -59,16 +59,16 @@ public:
virtual ~WebChannelIPCTransportHost();
// WebContentsObserver
- virtual void RenderViewHostChanged(content::RenderViewHost* old_host, content::RenderViewHost* new_host) Q_DECL_OVERRIDE;
+ void RenderViewHostChanged(content::RenderViewHost* old_host, content::RenderViewHost* new_host) override;
// QWebChannelAbstractTransport
- void sendMessage(const QJsonObject &message) Q_DECL_OVERRIDE;
+ void sendMessage(const QJsonObject &message) override;
void setWorldId(uint worldId);
uint worldId() const { return m_worldId; }
private:
- bool OnMessageReceived(const IPC::Message& message) Q_DECL_OVERRIDE;
+ bool OnMessageReceived(const IPC::Message& message) override;
void onWebChannelMessage(const std::vector<char> &message);
uint m_worldId;
};