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

Unified Diff: ash/common/wm/overview/scoped_overview_animation_settings_factory.h

Issue 2734653002: chromeos: Move files in //ash/common to //ash (Closed)
Patch Set: fix a11y tests, fix docs Created 3 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: ash/common/wm/overview/scoped_overview_animation_settings_factory.h
diff --git a/ash/common/wm/overview/scoped_overview_animation_settings_factory.h b/ash/common/wm/overview/scoped_overview_animation_settings_factory.h
deleted file mode 100644
index e0340e1eecaccbea18afc4aefbaf639b408825eb..0000000000000000000000000000000000000000
--- a/ash/common/wm/overview/scoped_overview_animation_settings_factory.h
+++ /dev/null
@@ -1,36 +0,0 @@
-// Copyright 2016 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef ASH_COMMON_WM_OVERVIEW_SCOPED_OVERVIEW_ANIMATION_SETTINGS_FACTORY_H_
-#define ASH_COMMON_WM_OVERVIEW_SCOPED_OVERVIEW_ANIMATION_SETTINGS_FACTORY_H_
-
-#include <memory>
-
-#include "ash/common/wm/overview/overview_animation_type.h"
-
-namespace ash {
-
-class ScopedOverviewAnimationSettings;
-class WmWindow;
-
-// Factory for creating ScopedOverviewAnimationSettings.
-class ScopedOverviewAnimationSettingsFactory {
- public:
- static ScopedOverviewAnimationSettingsFactory* Get();
-
- virtual std::unique_ptr<ScopedOverviewAnimationSettings>
- CreateOverviewAnimationSettings(OverviewAnimationType animation_type,
- WmWindow* window) = 0;
-
- protected:
- ScopedOverviewAnimationSettingsFactory();
- virtual ~ScopedOverviewAnimationSettingsFactory();
-
- private:
- static ScopedOverviewAnimationSettingsFactory* instance_;
-};
-
-} // namespace ash
-
-#endif // ASH_COMMON_WM_OVERVIEW_SCOPED_OVERVIEW_ANIMATION_SETTINGS_FACTORY_H_

Powered by Google App Engine
This is Rietveld 408576698