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

Unified Diff: ash/host/ash_remote_window_tree_host_win.h

Issue 1088593006: Update {virtual,override} to follow C++11 style in ash. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 | « no previous file | ash/host/ash_window_tree_host_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/host/ash_remote_window_tree_host_win.h
diff --git a/ash/host/ash_remote_window_tree_host_win.h b/ash/host/ash_remote_window_tree_host_win.h
index 8c97db92279ccba53dbda459696f3c5ed545f2ec..143a0ce0f8245f58ef04da04bd78211f8344fb96 100644
--- a/ash/host/ash_remote_window_tree_host_win.h
+++ b/ash/host/ash_remote_window_tree_host_win.h
@@ -21,22 +21,22 @@ class ASH_EXPORT AshRemoteWindowTreeHostWin
explicit AshRemoteWindowTreeHostWin(HWND remote_hwnd);
private:
- virtual ~AshRemoteWindowTreeHostWin();
+ ~AshRemoteWindowTreeHostWin() override;
// AshWindowTreeHost:
- virtual void ToggleFullScreen() override;
- virtual bool ConfineCursorToRootWindow() override;
- virtual void UnConfineCursor() override;
- virtual void SetRootWindowTransformer(
+ void ToggleFullScreen() override;
+ bool ConfineCursorToRootWindow() override;
+ void UnConfineCursor() override;
+ void SetRootWindowTransformer(
scoped_ptr<RootWindowTransformer> transformer) override;
- virtual gfx::Insets GetHostInsets() const override;
- virtual aura::WindowTreeHost* AsWindowTreeHost() override;
+ gfx::Insets GetHostInsets() const override;
+ aura::WindowTreeHost* AsWindowTreeHost() override;
// WindowTreeHostWin:
- virtual gfx::Transform GetRootTransform() const override;
- virtual void SetRootTransform(const gfx::Transform& transform) override;
- virtual gfx::Transform GetInverseRootTransform() const override;
- virtual void UpdateRootWindowSize(const gfx::Size& host_size) override;
+ gfx::Transform GetRootTransform() const override;
+ void SetRootTransform(const gfx::Transform& transform) override;
+ gfx::Transform GetInverseRootTransform() const override;
+ void UpdateRootWindowSize(const gfx::Size& host_size) override;
TransformerHelper transformer_helper_;
« no previous file with comments | « no previous file | ash/host/ash_window_tree_host_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698