Index: chrome/browser/ui/views/apps/glass_app_window_frame_view_win.h |
diff --git a/chrome/browser/ui/views/apps/glass_app_window_frame_view_win.h b/chrome/browser/ui/views/apps/glass_app_window_frame_view_win.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..9ad6975c63399e4cc3d6b589b4e291120ee91608 |
--- /dev/null |
+++ b/chrome/browser/ui/views/apps/glass_app_window_frame_view_win.h |
@@ -0,0 +1,50 @@ |
+// 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 CHROME_BROWSER_UI_VIEWS_APPS_GLASS_APP_WINDOW_FRAME_VIEW_WIN_H_ |
+#define CHROME_BROWSER_UI_VIEWS_APPS_GLASS_APP_WINDOW_FRAME_VIEW_WIN_H_ |
+ |
+#include "ui/gfx/geometry/insets.h" |
+#include "ui/views/window/non_client_view.h" |
+ |
+namespace apps { |
+class NativeAppWindow; |
+} |
+ |
+// A glass style app window frame view. |
+class GlassAppWindowFrameViewWin : public views::NonClientFrameView { |
+ public: |
+ static const char kViewClassName[]; |
+ |
+ explicit GlassAppWindowFrameViewWin(apps::NativeAppWindow* window, |
+ views::Widget* widget); |
+ virtual ~GlassAppWindowFrameViewWin(); |
+ |
+ gfx::Insets GetGlassInsets() const; |
+ |
+ private: |
+ // views::NonClientFrameView implementation. |
+ 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 {} |
+ |
+ // views::View implementation. |
+ virtual gfx::Size GetPreferredSize() OVERRIDE; |
+ virtual const char* GetClassName() const OVERRIDE; |
+ virtual gfx::Size GetMinimumSize() OVERRIDE; |
+ virtual gfx::Size GetMaximumSize() OVERRIDE; |
+ |
+ apps::NativeAppWindow* window_; |
+ views::Widget* widget_; |
+ |
+ DISALLOW_COPY_AND_ASSIGN(GlassAppWindowFrameViewWin); |
+}; |
+ |
+#endif // CHROME_BROWSER_UI_VIEWS_APPS_GLASS_APP_WINDOW_FRAME_VIEW_WIN_H_ |