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

Unified Diff: ash/wm/workspace/workspace_layout_manager_backdrop_delegate.h

Issue 1926913002: Moves more code to ash/wm/common (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@refactor_workspace_layout_manager
Patch Set: merge to trunk Created 4 years, 8 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
« no previous file with comments | « ash/wm/workspace/workspace_layout_manager.cc ('k') | ash/wm/workspace/workspace_layout_manager_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/wm/workspace/workspace_layout_manager_backdrop_delegate.h
diff --git a/ash/wm/workspace/workspace_layout_manager_backdrop_delegate.h b/ash/wm/workspace/workspace_layout_manager_backdrop_delegate.h
deleted file mode 100644
index f23345294e431873d15d4b5d9db69dcb45d01f3b..0000000000000000000000000000000000000000
--- a/ash/wm/workspace/workspace_layout_manager_backdrop_delegate.h
+++ /dev/null
@@ -1,46 +0,0 @@
-// Copyright 2014 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_WM_WORKSPACE_WORKSPACE_LAYOUT_MANAGER_BACKDROP_DELEGATE_H_
-#define ASH_WM_WORKSPACE_WORKSPACE_LAYOUT_MANAGER_BACKDROP_DELEGATE_H_
-
-#include "ash/ash_export.h"
-#include "ash/wm/common/wm_types.h"
-
-namespace ash {
-namespace wm {
-class WindowState;
-class WmWindow;
-}
-
-// A delegate which can be set to create and control a backdrop which gets
-// placed below the top level window.
-class ASH_EXPORT WorkspaceLayoutManagerBackdropDelegate {
- public:
- virtual ~WorkspaceLayoutManagerBackdropDelegate() {}
-
- // A window got added to the layout.
- virtual void OnWindowAddedToLayout(wm::WmWindow* child) = 0;
-
- // A window got removed from the layout.
- virtual void OnWindowRemovedFromLayout(wm::WmWindow* child) = 0;
-
- // The visibility of a window has changed.
- virtual void OnChildWindowVisibilityChanged(wm::WmWindow* child,
- bool visible) = 0;
-
- // The stacking order of a window has changed.
- virtual void OnWindowStackingChanged(wm::WmWindow* window) = 0;
-
- // A window state type has changed.
- virtual void OnPostWindowStateTypeChange(wm::WindowState* window_state,
- wm::WindowStateType old_type) = 0;
-
- // The work area insets have changed, altering the total available space.
- virtual void OnDisplayWorkAreaInsetsChanged() = 0;
-};
-
-} // namespace ash
-
-#endif // ASH_WM_WORKSPACE_WORKSPACE_LAYOUT_MANAGER_BACKDROP_DELEGATE_H_
« no previous file with comments | « ash/wm/workspace/workspace_layout_manager.cc ('k') | ash/wm/workspace/workspace_layout_manager_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698