Commit 1834ea9d authored by dcheng's avatar dcheng Committed by Commit bot

Apply automated fixits for Chrome clang plugin to base.

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

BUG=467287

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

Cr-Commit-Position: refs/heads/master@{#327542}
parent 5e949a4c
...@@ -27,34 +27,34 @@ class FakeComObject : public IDispatch { ...@@ -27,34 +27,34 @@ class FakeComObject : public IDispatch {
FakeComObject() : ref_(0) { FakeComObject() : ref_(0) {
} }
STDMETHOD_(DWORD, AddRef)() { STDMETHOD_(DWORD, AddRef)() override {
ref_++; ref_++;
return ref_; return ref_;
} }
STDMETHOD_(DWORD, Release)() { STDMETHOD_(DWORD, Release)() override {
ref_--; ref_--;
return ref_; return ref_;
} }
STDMETHOD(QueryInterface)(REFIID, void**) { STDMETHOD(QueryInterface)(REFIID, void**) override { return E_NOTIMPL; }
return E_NOTIMPL;
}
STDMETHOD(GetTypeInfoCount)(UINT*) { STDMETHOD(GetTypeInfoCount)(UINT*) override { return E_NOTIMPL; }
return E_NOTIMPL;
}
STDMETHOD(GetTypeInfo)(UINT, LCID, ITypeInfo**) { STDMETHOD(GetTypeInfo)(UINT, LCID, ITypeInfo**) override { return E_NOTIMPL; }
return E_NOTIMPL;
}
STDMETHOD(GetIDsOfNames)(REFIID, LPOLESTR*, UINT, LCID, DISPID*) { STDMETHOD(GetIDsOfNames)(REFIID, LPOLESTR*, UINT, LCID, DISPID*) override {
return E_NOTIMPL; return E_NOTIMPL;
} }
STDMETHOD(Invoke)(DISPID, REFIID, LCID, WORD, DISPPARAMS*, VARIANT*, STDMETHOD(Invoke)(DISPID,
EXCEPINFO*, UINT*) { REFIID,
LCID,
WORD,
DISPPARAMS*,
VARIANT*,
EXCEPINFO*,
UINT*) override {
return E_NOTIMPL; return E_NOTIMPL;
} }
......
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