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

Side by Side Diff: chrome/browser/views/frame/opaque_browser_frame_view.cc

Issue 1727009: Always use opaque frame for extension app windows (Closed) Base URL: git://codf21.jail/chromium.git
Patch Set: now it actually works Created 10 years, 7 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
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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/views/frame/opaque_browser_frame_view.h" 5 #include "chrome/browser/views/frame/opaque_browser_frame_view.h"
6 6
7 #include "app/l10n_util.h" 7 #include "app/l10n_util.h"
8 #include "app/resource_bundle.h" 8 #include "app/resource_bundle.h"
9 #include "app/theme_provider.h" 9 #include "app/theme_provider.h"
10 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
(...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after
254 // OpaqueBrowserFrameView, views::NonClientFrameView implementation: 254 // OpaqueBrowserFrameView, views::NonClientFrameView implementation:
255 255
256 gfx::Rect OpaqueBrowserFrameView::GetBoundsForClientView() const { 256 gfx::Rect OpaqueBrowserFrameView::GetBoundsForClientView() const {
257 return client_view_bounds_; 257 return client_view_bounds_;
258 } 258 }
259 259
260 bool OpaqueBrowserFrameView::AlwaysUseNativeFrame() const { 260 bool OpaqueBrowserFrameView::AlwaysUseNativeFrame() const {
261 return frame_->AlwaysUseNativeFrame(); 261 return frame_->AlwaysUseNativeFrame();
262 } 262 }
263 263
264 bool OpaqueBrowserFrameView::AlwaysUseCustomFrame() const {
265 return true;
266 }
267
264 gfx::Rect OpaqueBrowserFrameView::GetWindowBoundsForClientBounds( 268 gfx::Rect OpaqueBrowserFrameView::GetWindowBoundsForClientBounds(
265 const gfx::Rect& client_bounds) const { 269 const gfx::Rect& client_bounds) const {
266 int top_height = NonClientTopBorderHeight(); 270 int top_height = NonClientTopBorderHeight();
267 int border_thickness = NonClientBorderThickness(); 271 int border_thickness = NonClientBorderThickness();
268 return gfx::Rect(std::max(0, client_bounds.x() - border_thickness), 272 return gfx::Rect(std::max(0, client_bounds.x() - border_thickness),
269 std::max(0, client_bounds.y() - top_height), 273 std::max(0, client_bounds.y() - top_height),
270 client_bounds.width() + (2 * border_thickness), 274 client_bounds.width() + (2 * border_thickness),
271 client_bounds.height() + top_height + border_thickness); 275 client_bounds.height() + top_height + border_thickness);
272 } 276 }
273 277
(...skipping 735 matching lines...) Expand 10 before | Expand all | Expand 10 after
1009 } 1013 }
1010 1014
1011 gfx::Rect OpaqueBrowserFrameView::CalculateClientAreaBounds(int width, 1015 gfx::Rect OpaqueBrowserFrameView::CalculateClientAreaBounds(int width,
1012 int height) const { 1016 int height) const {
1013 int top_height = NonClientTopBorderHeight(); 1017 int top_height = NonClientTopBorderHeight();
1014 int border_thickness = NonClientBorderThickness(); 1018 int border_thickness = NonClientBorderThickness();
1015 return gfx::Rect(border_thickness, top_height, 1019 return gfx::Rect(border_thickness, top_height,
1016 std::max(0, width - (2 * border_thickness)), 1020 std::max(0, width - (2 * border_thickness)),
1017 std::max(0, height - top_height - border_thickness)); 1021 std::max(0, height - top_height - border_thickness));
1018 } 1022 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698