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

Unified Diff: chrome/browser/ui/views/apps/glass_app_window_frame_view_win.h

Issue 213743017: Remove title and icon from chrome apps native style title bars. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed leak in test Created 6 years, 8 months 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
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_

Powered by Google App Engine
This is Rietveld 408576698