Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(756)

Unified Diff: chrome/browser/ui/views/panels/taskbar_window_thumbnailer_win.h

Issue 1100223002: Update {virtual,override} to follow C++11 style in chrome. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/ui/views/panels/panel_view.h ('k') | chrome/browser/ui/views/status_icons/status_icon_win.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/views/panels/taskbar_window_thumbnailer_win.h
diff --git a/chrome/browser/ui/views/panels/taskbar_window_thumbnailer_win.h b/chrome/browser/ui/views/panels/taskbar_window_thumbnailer_win.h
index 66e4fa365006b5ab917225a8aadcf06470dae946..3040039ed10ed404dce7344b7f6da517e2ca006d 100644
--- a/chrome/browser/ui/views/panels/taskbar_window_thumbnailer_win.h
+++ b/chrome/browser/ui/views/panels/taskbar_window_thumbnailer_win.h
@@ -25,7 +25,7 @@ class TaskbarWindowThumbnailerWin : public ui::HWNDMessageFilter {
public:
TaskbarWindowThumbnailerWin(HWND hwnd,
TaskbarWindowThumbnailerDelegateWin* delegate);
- virtual ~TaskbarWindowThumbnailerWin();
+ ~TaskbarWindowThumbnailerWin() override;
// Starts using the custom snapshot for live preview. The snapshot is only
// captured once when the system requests it, so the updates of the panels'
@@ -48,11 +48,11 @@ class TaskbarWindowThumbnailerWin : public ui::HWNDMessageFilter {
private:
// Overridden from ui::HWNDMessageFilter:
- virtual bool FilterMessage(HWND hwnd,
- UINT message,
- WPARAM w_param,
- LPARAM l_param,
- LRESULT* l_result) override;
+ bool FilterMessage(HWND hwnd,
+ UINT message,
+ WPARAM w_param,
+ LPARAM l_param,
+ LRESULT* l_result) override;
// Message handlers.
bool OnDwmSendIconicThumbnail(int width, int height, LRESULT* l_result);
« no previous file with comments | « chrome/browser/ui/views/panels/panel_view.h ('k') | chrome/browser/ui/views/status_icons/status_icon_win.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698