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

Unified Diff: ash/host/ash_remote_window_tree_host_win.h

Issue 201573015: Introdcue AshWindowTreeHost and move ash/chrome specific code in WTH to ash. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 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 | « ash/host/DEPS ('k') | ash/host/ash_remote_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
new file mode 100644
index 0000000000000000000000000000000000000000..493a7b9bae06aef2f98dcc9d5c8a401938e199ce
--- /dev/null
+++ b/ash/host/ash_remote_window_tree_host_win.h
@@ -0,0 +1,53 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef ASH_HOST_REMOTE_WINDOW_TREE_HOST_WIN_H_
+#define ASH_HOST_REMOTE_WINDOW_TREE_HOST_WIN_H_
+
+#include "ash/ash_export.h"
+#include "ash/host/ash_window_tree_host.h"
+#include "ash/host/transformer_helper.h"
+#include "ui/aura/remote_window_tree_host_win.h"
+
+namespace ash {
+
+class ASH_EXPORT AshRemoteWindowTreeHostWin
+ : public AshWindowTreeHost,
+ public aura::RemoteWindowTreeHostWin {
+ public:
+ // Creates an instance of AshRemoteWindowTreeHostWin
+ // and sets it to RemoteWindowTreeHostWin::SetInstance.
+ static void Init();
+
+ // Returns the instance created in Init() method above.
+ // This also performs an extra check if the instance is same
+ // one that aura::RemoteWindowTreeHostWin::Instance() returns.
+ static AshRemoteWindowTreeHostWin* GetInstance();
+
+ private:
+ AshRemoteWindowTreeHostWin();
+ virtual ~AshRemoteWindowTreeHostWin();
+
+ // AshWindowTreeHost:
+ virtual void ToggleFullScreen() OVERRIDE;
+ virtual bool ConfineCursorToRootWindow() OVERRIDE;
+ virtual void UnConfineCursor() OVERRIDE;
+ virtual void SetRootWindowTransformer(
+ scoped_ptr<RootWindowTransformer> transformer) OVERRIDE;
+ virtual 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;
+
+ TransformerHelper transformer_helper_;
+
+ DISALLOW_COPY_AND_ASSIGN(AshRemoteWindowTreeHostWin);
+};
+
+} // namespace ash
+
+#endif // ASH_HOST_REMOTE_WINDOW_TREE_HOST_WIN_H_
« no previous file with comments | « ash/host/DEPS ('k') | ash/host/ash_remote_window_tree_host_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698