Revert of Add button to add new FSP services to Files app. (patchset #8 id:140001...
[chromium-blink-merge.git] / chrome / browser / ui / views / apps / glass_app_window_frame_view_win.h
blob7de1d1ae813cea4249e1219f6bc9f41fafd6bf89
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CHROME_BROWSER_UI_VIEWS_APPS_GLASS_APP_WINDOW_FRAME_VIEW_WIN_H_
6 #define CHROME_BROWSER_UI_VIEWS_APPS_GLASS_APP_WINDOW_FRAME_VIEW_WIN_H_
8 #include "ui/gfx/geometry/insets.h"
9 #include "ui/views/window/non_client_view.h"
11 namespace extensions {
12 class NativeAppWindow;
15 // A glass style app window frame view.
16 class GlassAppWindowFrameViewWin : public views::NonClientFrameView {
17 public:
18 static const char kViewClassName[];
20 explicit GlassAppWindowFrameViewWin(extensions::NativeAppWindow* window,
21 views::Widget* widget);
22 virtual ~GlassAppWindowFrameViewWin();
24 gfx::Insets GetGlassInsets() const;
26 private:
27 // views::NonClientFrameView implementation.
28 virtual gfx::Rect GetBoundsForClientView() const override;
29 virtual gfx::Rect GetWindowBoundsForClientBounds(
30 const gfx::Rect& client_bounds) const override;
31 virtual int NonClientHitTest(const gfx::Point& point) override;
32 virtual void GetWindowMask(const gfx::Size& size,
33 gfx::Path* window_mask) override;
34 virtual void ResetWindowControls() override {}
35 virtual void UpdateWindowIcon() override {}
36 virtual void UpdateWindowTitle() override {}
37 virtual void SizeConstraintsChanged() override {}
39 // views::View implementation.
40 virtual gfx::Size GetPreferredSize() const override;
41 virtual const char* GetClassName() const override;
42 virtual gfx::Size GetMinimumSize() const override;
43 virtual gfx::Size GetMaximumSize() const override;
45 extensions::NativeAppWindow* window_;
46 views::Widget* widget_;
48 DISALLOW_COPY_AND_ASSIGN(GlassAppWindowFrameViewWin);
51 #endif // CHROME_BROWSER_UI_VIEWS_APPS_GLASS_APP_WINDOW_FRAME_VIEW_WIN_H_