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

Side by Side Diff: ash/wm/overview/scoped_overview_animation_settings_factory_aura.cc

Issue 2012343002: Converts overview to use common ash types (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: feedback Created 4 years, 6 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/wm/overview/scoped_overview_animation_settings_factory_aura.h"
6
7 #include "ash/wm/aura/wm_window_aura.h"
8 #include "ash/wm/overview/scoped_overview_animation_settings_aura.h"
9 #include "base/memory/ptr_util.h"
10
11 namespace ash {
12
13 ScopedOverviewAnimationSettingsFactoryAura::
14 ScopedOverviewAnimationSettingsFactoryAura() {}
15
16 ScopedOverviewAnimationSettingsFactoryAura::
17 ~ScopedOverviewAnimationSettingsFactoryAura() {}
18
19 std::unique_ptr<ScopedOverviewAnimationSettings>
20 ScopedOverviewAnimationSettingsFactoryAura::CreateOverviewAnimationSettings(
21 OverviewAnimationType animation_type,
22 wm::WmWindow* window) {
23 return base::WrapUnique(new ScopedOverviewAnimationSettingsAura(
24 animation_type, wm::WmWindowAura::GetAuraWindow(window)));
25 }
26
27 } // namespace ash
OLDNEW
« no previous file with comments | « ash/wm/overview/scoped_overview_animation_settings_factory_aura.h ('k') | ash/wm/overview/scoped_transform_overview_window.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698