summaryrefslogtreecommitdiffstats
path: root/win8/delegate_execute/command_execute_impl.h
diff options
context:
space:
mode:
authordcheng <dcheng@chromium.org>2015-04-29 14:54:22 -0700
committerCommit bot <commit-bot@chromium.org>2015-04-29 21:56:05 +0000
commit04ae4f5ca488a6066efef98fd60d58f7f71040aa (patch)
tree8a25e9351847980cf5d9f1d044122b7a3c37ba48 /win8/delegate_execute/command_execute_impl.h
parentc03f0524c44cc50189c3a29c20d74b4d84a252f3 (diff)
downloadchromium_src-04ae4f5ca488a6066efef98fd60d58f7f71040aa.zip
chromium_src-04ae4f5ca488a6066efef98fd60d58f7f71040aa.tar.gz
chromium_src-04ae4f5ca488a6066efef98fd60d58f7f71040aa.tar.bz2
Apply automated fixits for Chrome clang plugin to win8.
Working on trimming down plugin warnings on the Windows clang build. BUG=467287 TBR=ananta@chromium.org Review URL: https://codereview.chromium.org/1117743002 Cr-Commit-Position: refs/heads/master@{#327588}
Diffstat (limited to 'win8/delegate_execute/command_execute_impl.h')
-rw-r--r--win8/delegate_execute/command_execute_impl.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/win8/delegate_execute/command_execute_impl.h b/win8/delegate_execute/command_execute_impl.h
index d2486d4..dd73ede 100644
--- a/win8/delegate_execute/command_execute_impl.h
+++ b/win8/delegate_execute/command_execute_impl.h
@@ -60,26 +60,26 @@ class ATL_NO_VTABLE DECLSPEC_UUID("071BB5F2-85A4-424F-BFE7-5F1609BE4C2C")
public:
// IExecuteCommand
- STDMETHOD(SetKeyState)(DWORD key_state);
- STDMETHOD(SetParameters)(LPCWSTR params);
- STDMETHOD(SetPosition)(POINT pt);
- STDMETHOD(SetShowWindow)(int show);
- STDMETHOD(SetNoShowUI)(BOOL no_show_ui);
- STDMETHOD(SetDirectory)(LPCWSTR directory);
- STDMETHOD(Execute)(void);
+ STDMETHOD(SetKeyState)(DWORD key_state) override;
+ STDMETHOD(SetParameters)(LPCWSTR params) override;
+ STDMETHOD(SetPosition)(POINT pt) override;
+ STDMETHOD(SetShowWindow)(int show) override;
+ STDMETHOD(SetNoShowUI)(BOOL no_show_ui) override;
+ STDMETHOD(SetDirectory)(LPCWSTR directory) override;
+ STDMETHOD(Execute)(void)override;
// IInitializeCommand
- STDMETHOD(Initialize)(LPCWSTR name, IPropertyBag* bag);
+ STDMETHOD(Initialize)(LPCWSTR name, IPropertyBag * bag) override;
// IObjectWithSelection
- STDMETHOD(SetSelection)(IShellItemArray* item_array);
- STDMETHOD(GetSelection)(REFIID riid, void** selection);
+ STDMETHOD(SetSelection)(IShellItemArray * item_array) override;
+ STDMETHOD(GetSelection)(REFIID riid, void** selection) override;
// IExecuteCommandApplicationHostEnvironment
- STDMETHOD(GetValue)(enum AHE_TYPE* pahe);
+ STDMETHOD(GetValue)(enum AHE_TYPE * pahe) override;
// IForegroundTransfer
- STDMETHOD(AllowForegroundTransfer)(void* reserved);
+ STDMETHOD(AllowForegroundTransfer)(void* reserved) override;
static bool FindChromeExe(base::FilePath* chrome_exe);