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

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

Issue 229343004: Revert 262516 "Remove title and icon from chrome apps native style title bars." (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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
deleted file mode 100644
index 9ad6975c63399e4cc3d6b589b4e291120ee91608..0000000000000000000000000000000000000000
--- a/chrome/browser/ui/views/apps/glass_app_window_frame_view_win.h
+++ /dev/null
@@ -1,50 +0,0 @@
-// 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