Commit a69265d0 authored by dcheng's avatar dcheng Committed by Commit bot

Apply automated fixits for Chrome clang plugin to remoting.

Working on trimming down plugin warnings on the Windows clang build.

BUG=467287
TBR=jamiewalch@chromium.org

Review URL: https://codereview.chromium.org/1115773002

Cr-Commit-Position: refs/heads/master@{#327548}
parent 0be554b7
......@@ -27,10 +27,10 @@ struct EnumDesktopShapeData {
class DesktopShapeTrackerWin : public DesktopShapeTracker {
public:
DesktopShapeTrackerWin();
virtual ~DesktopShapeTrackerWin();
~DesktopShapeTrackerWin() override;
virtual void RefreshDesktopShape();
virtual const webrtc::DesktopRegion& desktop_shape();
void RefreshDesktopShape() override;
const webrtc::DesktopRegion& desktop_shape() override;
private:
// Callback passed to EnumWindows() to enumerate windows.
......
......@@ -32,7 +32,7 @@ class LocalInputMonitorWin : public base::NonThreadSafe,
scoped_refptr<base::SingleThreadTaskRunner> caller_task_runner,
scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner,
base::WeakPtr<ClientSessionControl> client_session_control);
~LocalInputMonitorWin();
~LocalInputMonitorWin() override;
private:
// The actual implementation resides in LocalInputMonitorWin::Core class.
......
......@@ -57,7 +57,7 @@ static GUID RdpClientModuleLibid = {
class RdpClientModule : public ATL::CAtlModuleT<RdpClientModule> {
public:
RdpClientModule();
virtual ~RdpClientModule();
~RdpClientModule() override;
DECLARE_LIBID(RdpClientModuleLibid)
......
......@@ -66,7 +66,7 @@ class RdpClientWindow
RdpClientWindow(const net::IPEndPoint& server_endpoint,
const std::string& terminal_id,
EventHandler* event_handler);
~RdpClientWindow();
~RdpClientWindow() override;
// Creates the window along with the ActiveX control and initiates the
// connection. |screen_size| specifies resolution of the screen. Returns false
......
......@@ -39,11 +39,13 @@ class __declspec(uuid(RDP_DESKTOP_SESSION_CLSID)) RdpDesktopSession
RdpDesktopSession();
// IRdpDesktopSession implementation.
STDMETHOD(Connect)(long width, long height, BSTR terminal_id,
IRdpDesktopSessionEventHandler* event_handler);
STDMETHOD(Disconnect)();
STDMETHOD(ChangeResolution)(long width, long height);
STDMETHOD(InjectSas)();
STDMETHOD(Connect)(long width,
long height,
BSTR terminal_id,
IRdpDesktopSessionEventHandler* event_handler) override;
STDMETHOD(Disconnect)() override;
STDMETHOD(ChangeResolution)(long width, long height) override;
STDMETHOD(InjectSas)() override;
DECLARE_NO_REGISTRY()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment