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

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

Issue 23523018: Fixes use after free during drag and drop. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge 2 trunk 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 504 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 }
525
526 ////////////////////////////////////////////////////////////////////////////////
527 // NativeBrowserFrame, public:
528
529 // static
530 NativeBrowserFrame* NativeBrowserFrame::CreateNativeBrowserFrame(
531 BrowserFrame* browser_frame,
532 BrowserView* browser_view) {
533 return new BrowserFrameWin(browser_frame, browser_view);
534 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/views/frame/browser_frame_aura.cc ('k') | chrome/browser/ui/views/frame/desktop_browser_frame_aura.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698