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

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

Issue 2243513004: mash: Partially migrate WorkspaceController to ash common. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix test failures and crashes. Created 4 years, 4 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
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 // Returns scale related to the specified AshWindowScaleType.
James Cook 2016/08/11 23:27:35 Doesn't seem to apply anymore.
msw 2016/08/12 00:17:15 Done.
13 void SetTransformForScaleAnimation(ui::Layer* layer,
14 LayerScaleAnimationDirection type) {
15 // Scales for AshWindow above/below current workspace.
James Cook 2016/08/11 23:27:35 WmWindow? just window?
msw 2016/08/12 00:17:15 Done.
16 const float kLayerScaleAboveSize = 1.1f;
17 const float kLayerScaleBelowSize = .9f;
18
19 const float scale = type == LAYER_SCALE_ANIMATION_ABOVE
20 ? kLayerScaleAboveSize
21 : kLayerScaleBelowSize;
22 gfx::Transform transform;
23 transform.Translate(-layer->bounds().width() * (scale - 1.0f) / 2,
24 -layer->bounds().height() * (scale - 1.0f) / 2);
25 transform.Scale(scale, scale);
26 layer->SetTransform(transform);
27 }
28
29 } // namespace ash
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698