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

Side by Side Diff: ui/aura/root_window_transformer.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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « ui/aura/remote_window_tree_host_win.cc ('k') | ui/aura/test/test_screen.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef UI_AURA_ROOT_WINDOW_TRANSFORMER_H_
6 #define UI_AURA_ROOT_WINDOW_TRANSFORMER_H_
7
8 #include "ui/aura/aura_export.h"
9
10 namespace gfx {
11 class Insets;
12 class Rect;
13 class Size;
14 class Transform;
15 }
16
17 namespace aura {
18
19 // RootWindowTransformer controls how RootWindow should be placed and
20 // transformed inside the host window.
21 class AURA_EXPORT RootWindowTransformer {
22 public:
23 virtual ~RootWindowTransformer() {}
24
25 // Returns the transform the root window in DIP.
26 virtual gfx::Transform GetTransform() const = 0;
27
28 // Returns the inverse of the transform above. This method is to
29 // provie an accurate inverse of the transform because the result of
30 // |gfx::Transform::GetInverse| may contains computational error.
31 virtual gfx::Transform GetInverseTransform() const = 0;
32
33 // Returns the root window's bounds for given host window size in DIP.
34 // This is necessary to handle the case where the root window's size
35 // is bigger than the host window. (Screen magnifier for example).
36 virtual gfx::Rect GetRootWindowBounds(const gfx::Size& host_size) const = 0;
37
38 // Returns the insets that specifies the effective area of
39 // the host window.
40 virtual gfx::Insets GetHostInsets() const = 0;
41 };
42
43 } // namespace aura
44
45 #endif // UI_AURA_ROOT_WINDOW_TRANSFORMER_H_
OLDNEW
« no previous file with comments | « ui/aura/remote_window_tree_host_win.cc ('k') | ui/aura/test/test_screen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698