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

Side by Side Diff: chrome/browser/ui/views/frame/browser_frame_win.cc

Issue 23769011: Move a bunch of windows stuff from ui/base/win to ui/gfx/win (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Moar bustage. Created 7 years, 3 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/ui/views/frame/browser_frame_win.h" 5 #include "chrome/browser/ui/views/frame/browser_frame_win.h"
6 6
7 #include <dwmapi.h> 7 #include <dwmapi.h>
8 #include <shellapi.h> 8 #include <shellapi.h>
9 #include <set> 9 #include <set>
10 10
(...skipping 18 matching lines...) Expand all
29 #include "content/public/browser/web_contents.h" 29 #include "content/public/browser/web_contents.h"
30 #include "content/public/common/page_transition_types.h" 30 #include "content/public/common/page_transition_types.h"
31 #include "grit/generated_resources.h" 31 #include "grit/generated_resources.h"
32 #include "grit/theme_resources.h" 32 #include "grit/theme_resources.h"
33 #include "ui/base/l10n/l10n_util.h" 33 #include "ui/base/l10n/l10n_util.h"
34 #include "ui/base/layout.h" 34 #include "ui/base/layout.h"
35 #include "ui/base/models/simple_menu_model.h" 35 #include "ui/base/models/simple_menu_model.h"
36 #include "ui/base/resource/resource_bundle.h" 36 #include "ui/base/resource/resource_bundle.h"
37 #include "ui/base/theme_provider.h" 37 #include "ui/base/theme_provider.h"
38 #include "ui/base/window_open_disposition.h" 38 #include "ui/base/window_open_disposition.h"
39 #include "ui/gfx/dpi_win.h"
40 #include "ui/gfx/font.h" 39 #include "ui/gfx/font.h"
40 #include "ui/gfx/win/dpi.h"
41 #include "ui/views/controls/menu/native_menu_win.h" 41 #include "ui/views/controls/menu/native_menu_win.h"
42 #include "ui/views/views_delegate.h" 42 #include "ui/views/views_delegate.h"
43 #include "ui/views/widget/native_widget_win.h" 43 #include "ui/views/widget/native_widget_win.h"
44 #include "ui/views/widget/widget.h" 44 #include "ui/views/widget/widget.h"
45 #include "ui/views/window/non_client_view.h" 45 #include "ui/views/window/non_client_view.h"
46 #include "url/gurl.h" 46 #include "url/gurl.h"
47 #include "win8/util/win8_util.h" 47 #include "win8/util/win8_util.h"
48 48
49 #pragma comment(lib, "dwmapi.lib") 49 #pragma comment(lib, "dwmapi.lib")
50 50
(...skipping 464 matching lines...) Expand 10 before | Expand all | Expand 10 after
515 return *title_font; 515 return *title_font;
516 } 516 }
517 517
518 bool BrowserFrame::ShouldLeaveOffsetNearTopBorder() { 518 bool BrowserFrame::ShouldLeaveOffsetNearTopBorder() {
519 if (win8::IsSingleWindowMetroMode()) { 519 if (win8::IsSingleWindowMetroMode()) {
520 if (ui::GetDisplayLayout() == ui::LAYOUT_DESKTOP) 520 if (ui::GetDisplayLayout() == ui::LAYOUT_DESKTOP)
521 return false; 521 return false;
522 } 522 }
523 return !IsMaximized(); 523 return !IsMaximized();
524 } 524 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698