| OLD | NEW |
| 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" |
| 11 #include "chrome/browser/browser_theme_provider.h" | |
| 12 #include "chrome/browser/tab_contents/tab_contents.h" | 11 #include "chrome/browser/tab_contents/tab_contents.h" |
| 12 #include "chrome/browser/themes/browser_theme_provider.h" |
| 13 #include "chrome/browser/views/frame/browser_frame.h" | 13 #include "chrome/browser/views/frame/browser_frame.h" |
| 14 #include "chrome/browser/views/frame/browser_view.h" | 14 #include "chrome/browser/views/frame/browser_view.h" |
| 15 #include "chrome/browser/views/tabs/tab_strip.h" | 15 #include "chrome/browser/views/tabs/tab_strip.h" |
| 16 #include "chrome/browser/views/toolbar_view.h" | 16 #include "chrome/browser/views/toolbar_view.h" |
| 17 #include "gfx/canvas_skia.h" | 17 #include "gfx/canvas_skia.h" |
| 18 #include "gfx/font.h" | 18 #include "gfx/font.h" |
| 19 #include "gfx/path.h" | 19 #include "gfx/path.h" |
| 20 #include "grit/app_resources.h" | 20 #include "grit/app_resources.h" |
| 21 #include "grit/chromium_strings.h" | 21 #include "grit/chromium_strings.h" |
| 22 #include "grit/generated_resources.h" | 22 #include "grit/generated_resources.h" |
| (...skipping 995 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1018 } | 1018 } |
| 1019 | 1019 |
| 1020 gfx::Rect OpaqueBrowserFrameView::CalculateClientAreaBounds(int width, | 1020 gfx::Rect OpaqueBrowserFrameView::CalculateClientAreaBounds(int width, |
| 1021 int height) const { | 1021 int height) const { |
| 1022 int top_height = NonClientTopBorderHeight(false, false); | 1022 int top_height = NonClientTopBorderHeight(false, false); |
| 1023 int border_thickness = NonClientBorderThickness(); | 1023 int border_thickness = NonClientBorderThickness(); |
| 1024 return gfx::Rect(border_thickness, top_height, | 1024 return gfx::Rect(border_thickness, top_height, |
| 1025 std::max(0, width - (2 * border_thickness)), | 1025 std::max(0, width - (2 * border_thickness)), |
| 1026 std::max(0, height - top_height - border_thickness)); | 1026 std::max(0, height - top_height - border_thickness)); |
| 1027 } | 1027 } |
| OLD | NEW |