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

Unified Diff: ash/host/ash_window_tree_host_ozone.cc

Issue 825783003: Ozone: Fix Linux Build. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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 | chrome/browser/extensions/global_shortcut_listener_ozone.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/host/ash_window_tree_host_ozone.cc
diff --git a/ash/host/ash_window_tree_host_ozone.cc b/ash/host/ash_window_tree_host_ozone.cc
index 4d700f34da301b8b59fa50763e58888c1c8fe836..a2e336b71038eb4fcd35f96c7454a19e324c551c 100644
--- a/ash/host/ash_window_tree_host_ozone.cc
+++ b/ash/host/ash_window_tree_host_ozone.cc
@@ -21,23 +21,23 @@ class AshWindowTreeHostOzone : public AshWindowTreeHost,
public aura::WindowTreeHostOzone {
public:
explicit AshWindowTreeHostOzone(const gfx::Rect& initial_bounds);
- virtual ~AshWindowTreeHostOzone();
+ ~AshWindowTreeHostOzone() override;
private:
// 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;
- virtual void SetRootTransform(const gfx::Transform& transform) override;
- virtual gfx::Transform GetRootTransform() const override;
- virtual gfx::Transform GetInverseRootTransform() const override;
- virtual void UpdateRootWindowSize(const gfx::Size& host_size) override;
- virtual void OnCursorVisibilityChangedNative(bool show) override;
- virtual void DispatchEvent(ui::Event* event) override;
+ gfx::Insets GetHostInsets() const override;
+ aura::WindowTreeHost* AsWindowTreeHost() override;
+ void SetRootTransform(const gfx::Transform& transform) override;
+ gfx::Transform GetRootTransform() const override;
+ gfx::Transform GetInverseRootTransform() const override;
+ void UpdateRootWindowSize(const gfx::Size& host_size) override;
+ void OnCursorVisibilityChangedNative(bool show) override;
+ void DispatchEvent(ui::Event* event) override;
// Temporarily disable the tap-to-click feature. Used on CrOS.
void SetTapToClickPaused(bool state);
« no previous file with comments | « no previous file | chrome/browser/extensions/global_shortcut_listener_ozone.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698