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

Unified Diff: ash/test/child_modal_window.h

Issue 11316287: Move WindowModalityController to CoreWm. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years 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/test/capture_tracking_view.cc ('k') | ash/test/child_modal_window.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/test/child_modal_window.h
===================================================================
--- ash/test/child_modal_window.h (revision 170620)
+++ ash/test/child_modal_window.h (working copy)
@@ -1,79 +0,0 @@
-// Copyright (c) 2012 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_TEST_CHILD_WMODAL_WINDOW_H_
-#define ASH_TEST_CHILD_WMODAL_WINDOW_H_
-
-#include "ui/views/controls/button/button.h"
-#include "ui/views/widget/widget_delegate.h"
-#include "ui/views/widget/widget_observer.h"
-
-namespace views {
-class NativeTextButton;
-class NativeViewHost;
-class Textfield;
-class View;
-class Widget;
-}
-
-namespace ash {
-namespace test {
-
-void CreateChildModalParent();
-
-class ChildModalParent : public views::WidgetDelegateView,
- public views::ButtonListener,
- public views::WidgetObserver {
- public:
- ChildModalParent();
- virtual ~ChildModalParent();
-
- void ShowChild();
- gfx::NativeWindow GetModalParent() const;
- gfx::NativeWindow GetChild() const;
-
- private:
- views::Widget* CreateChild();
-
- // Overridden from views::WidgetDelegate:
- virtual views::View* GetContentsView() OVERRIDE;
- virtual string16 GetWindowTitle() const OVERRIDE;
- virtual bool CanResize() const OVERRIDE;
- virtual void DeleteDelegate() OVERRIDE;
- virtual void Layout() OVERRIDE;
- virtual void ViewHierarchyChanged(bool is_add,
- views::View* parent,
- views::View* child) OVERRIDE;
-
- // Overridden from views::ButtonListener:
- virtual void ButtonPressed(views::Button* sender,
- const ui::Event& event) OVERRIDE;
-
- // Overridden from views::WidgetObserver:
- virtual void OnWidgetClosing(views::Widget* widget) OVERRIDE;
-
- // The button to toggle showing and hiding the child window. The child window
- // does not block input to this button.
- views::NativeTextButton* button_;
-
- // The text field to indicate the keyboard focus.
- views::Textfield* textfield_;
-
- // The host for the modal parent.
- views::NativeViewHost* host_;
-
- // The modal parent of the child window. The child window blocks input to this
- // view.
- gfx::NativeWindow modal_parent_;
-
- // The child window.
- views::Widget* child_;
-
- DISALLOW_COPY_AND_ASSIGN(ChildModalParent);
-};
-
-} // namespace test
-} // namespace ash
-
-#endif // ASH_TEST_CHILD_WMODAL_WINDOW_H_
« no previous file with comments | « ash/test/capture_tracking_view.cc ('k') | ash/test/child_modal_window.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698