summaryrefslogtreecommitdiffstats
path: root/ui/aura/toplevel_window_container.h
diff options
context:
space:
mode:
Diffstat (limited to 'ui/aura/toplevel_window_container.h')
-rw-r--r--ui/aura/toplevel_window_container.h34
1 files changed, 0 insertions, 34 deletions
diff --git a/ui/aura/toplevel_window_container.h b/ui/aura/toplevel_window_container.h
deleted file mode 100644
index 67c537a..0000000
--- a/ui/aura/toplevel_window_container.h
+++ /dev/null
@@ -1,34 +0,0 @@
-// Copyright (c) 2011 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 UI_AURA_TOPLEVEL_WINDOW_CONTAINER_H_
-#define UI_AURA_TOPLEVEL_WINDOW_CONTAINER_H_
-#pragma once
-
-#include "ui/aura/window.h"
-#include "ui/aura/aura_export.h"
-
-namespace aura {
-
-// A Window subclass that groups top-level windows.
-class AURA_EXPORT ToplevelWindowContainer : public Window {
- public:
- ToplevelWindowContainer();
- virtual ~ToplevelWindowContainer();
-
- // Returns the topmost window to activate, ignoring |ignore|.
- Window* GetTopmostWindowToActivate(Window* ignore) const;
-
- // Overridden from Window:
- virtual ToplevelWindowContainer* AsToplevelWindowContainer() OVERRIDE;
- virtual const ToplevelWindowContainer*
- AsToplevelWindowContainer() const OVERRIDE;
-
- private:
- DISALLOW_COPY_AND_ASSIGN(ToplevelWindowContainer);
-};
-
-} // namespace aura
-
-#endif // UI_AURA_TOPLEVEL_WINDOW_CONTAINER_H_