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

Unified Diff: ash/wm/dialog_frame_view.h

Issue 11571023: Move ash/wm's DialogFrameView to ui/views/window; etc. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Reorder DialogDelegate functions; inline Get*Params into WidgetExample::ButtonPressed; etc. 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/shell.cc ('k') | ash/wm/dialog_frame_view.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/wm/dialog_frame_view.h
diff --git a/ash/wm/dialog_frame_view.h b/ash/wm/dialog_frame_view.h
deleted file mode 100644
index c1f29be8c3a909f0ef0412de1e7b7e891313d609..0000000000000000000000000000000000000000
--- a/ash/wm/dialog_frame_view.h
+++ /dev/null
@@ -1,67 +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_WM_DIALOG_FRAME_VIEW_H_
-#define ASH_WM_DIALOG_FRAME_VIEW_H_
-
-#include "ui/views/controls/button/button.h"
-#include "ui/views/window/non_client_view.h"
-
-namespace gfx {
-class Font;
-}
-
-namespace views {
-class ImageButton;
-}
-
-namespace ash {
-namespace internal {
-
-// A NonClientFrameView that implements a Google-style for dialogs.
-class DialogFrameView : public views::NonClientFrameView,
- public views::ButtonListener {
- public:
- // Internal class name.
- static const char kViewClassName[];
-
- DialogFrameView();
- virtual ~DialogFrameView();
-
- // Overridden from views::NonClientFrameView:
- virtual gfx::Rect GetBoundsForClientView() const OVERRIDE;
- virtual gfx::Rect GetWindowBoundsForClientBounds(
- const gfx::Rect& client_bounds) const OVERRIDE;
- virtual int NonClientHitTest(const gfx::Point& point) OVERRIDE;
- virtual void GetWindowMask(const gfx::Size& size,
- gfx::Path* window_mask) OVERRIDE;
- virtual void ResetWindowControls() OVERRIDE;
- virtual void UpdateWindowIcon() OVERRIDE;
- virtual void UpdateWindowTitle() OVERRIDE;
-
- // Overridden from View:
- virtual std::string GetClassName() const OVERRIDE;
- virtual void Layout() OVERRIDE;
- virtual void OnPaint(gfx::Canvas* canvas) OVERRIDE;
-
- // Overridden from views::ButtonListener:
- virtual void ButtonPressed(views::Button* sender,
- const ui::Event& event) OVERRIDE;
-
- private:
- gfx::Insets GetPaddingInsets() const;
- gfx::Insets GetClientInsets() const;
-
- scoped_ptr<gfx::Font> title_font_;
- gfx::Rect title_display_rect_;
-
- views::ImageButton* close_button_;
-
- DISALLOW_COPY_AND_ASSIGN(DialogFrameView);
-};
-
-} // namespace internal
-} // namespace views
-
-#endif // ASH_WM_DIALOG_FRAME_VIEW_H_
« no previous file with comments | « ash/shell.cc ('k') | ash/wm/dialog_frame_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698