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

Side by Side Diff: ash/common/wm/wm_window_animations.cc

Issue 2734653002: chromeos: Move files in //ash/common to //ash (Closed)
Patch Set: fix a11y tests, fix docs Created 3 years, 9 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
« no previous file with comments | « ash/common/wm/wm_window_animations.h ('k') | ash/common/wm/workspace/magnetism_matcher.h » ('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 2016 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 #include "ash/common/wm/wm_window_animations.h"
6
7 #include "ui/compositor/layer.h"
8 #include "ui/gfx/transform.h"
9
10 namespace ash {
11
12 void SetTransformForScaleAnimation(ui::Layer* layer,
13 LayerScaleAnimationDirection type) {
14 // Scales for windows above and below the current workspace.
15 const float kLayerScaleAboveSize = 1.1f;
16 const float kLayerScaleBelowSize = .9f;
17
18 const float scale = type == LAYER_SCALE_ANIMATION_ABOVE
19 ? kLayerScaleAboveSize
20 : kLayerScaleBelowSize;
21 gfx::Transform transform;
22 transform.Translate(-layer->bounds().width() * (scale - 1.0f) / 2,
23 -layer->bounds().height() * (scale - 1.0f) / 2);
24 transform.Scale(scale, scale);
25 layer->SetTransform(transform);
26 }
27
28 } // namespace ash
OLDNEW
« no previous file with comments | « ash/common/wm/wm_window_animations.h ('k') | ash/common/wm/workspace/magnetism_matcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698