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

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

Issue 2901903003: [ash] Cleanup of ScopedOverviewAnimationSettings (Closed)
Patch Set: [ash] Cleanup of ScopedOverviewAnimationSettings (nuked factory) Created 3 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 #ifndef ASH_WM_OVERVIEW_WM_SCOPED_OVERVIEW_ANIMATION_SETTINGS_AURA_H_
6 #define ASH_WM_OVERVIEW_WM_SCOPED_OVERVIEW_ANIMATION_SETTINGS_AURA_H_
7
8 #include <memory>
9
10 #include "ash/wm/overview/scoped_overview_animation_settings_factory.h"
11 #include "base/macros.h"
12
13 namespace ash {
14
15 // Aura implementation of ScopedOverviewAnimationSettingsFactory.
16 class ScopedOverviewAnimationSettingsFactoryAura
17 : public ScopedOverviewAnimationSettingsFactory {
18 public:
19 ScopedOverviewAnimationSettingsFactoryAura();
20 ~ScopedOverviewAnimationSettingsFactoryAura() override;
21
22 // ScopedOverviewAnimationSettingsFactoryAura:
23 std::unique_ptr<ScopedOverviewAnimationSettings>
24 CreateOverviewAnimationSettings(OverviewAnimationType animation_type,
25 aura::Window* window) override;
26
27 private:
28 DISALLOW_COPY_AND_ASSIGN(ScopedOverviewAnimationSettingsFactoryAura);
29 };
30
31 } // namespace ash
32
33 #endif // ASH_WM_OVERVIEW_WM_SCOPED_OVERVIEW_ANIMATION_SETTINGS_AURA_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698