OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_header_painter_ash.h" | 5 #include "chrome/browser/ui/views/frame/browser_header_painter_ash.h" |
6 | 6 |
7 #include "ash/frame/caption_buttons/frame_caption_button_container_view.h" | 7 #include "ash/frame/caption_buttons/frame_caption_button_container_view.h" |
8 #include "ash/frame/header_painter_util.h" | 8 #include "ash/frame/header_painter_util.h" |
9 #include "base/logging.h" // DCHECK | 9 #include "base/logging.h" // DCHECK |
10 #include "chrome/browser/ui/browser.h" | 10 #include "chrome/browser/ui/browser.h" |
11 #include "chrome/browser/ui/views/frame/browser_frame.h" | 11 #include "chrome/browser/ui/views/frame/browser_frame.h" |
12 #include "chrome/browser/ui/views/frame/browser_view.h" | 12 #include "chrome/browser/ui/views/frame/browser_view.h" |
13 #include "grit/theme_resources.h" | 13 #include "grit/theme_resources.h" |
14 #include "third_party/skia/include/core/SkCanvas.h" | 14 #include "third_party/skia/include/core/SkCanvas.h" |
15 #include "third_party/skia/include/core/SkColor.h" | 15 #include "third_party/skia/include/core/SkColor.h" |
16 #include "third_party/skia/include/core/SkPaint.h" | 16 #include "third_party/skia/include/core/SkPaint.h" |
17 #include "third_party/skia/include/core/SkPath.h" | 17 #include "third_party/skia/include/core/SkPath.h" |
18 #include "ui/base/resource/resource_bundle.h" | 18 #include "ui/base/resource/resource_bundle.h" |
19 #include "ui/base/theme_provider.h" | 19 #include "ui/base/theme_provider.h" |
20 #include "ui/gfx/animation/slide_animation.h" | 20 #include "ui/gfx/animation/slide_animation.h" |
21 #include "ui/gfx/canvas.h" | 21 #include "ui/gfx/canvas.h" |
| 22 #include "ui/gfx/geometry/rect.h" |
22 #include "ui/gfx/image/image_skia.h" | 23 #include "ui/gfx/image/image_skia.h" |
23 #include "ui/gfx/rect.h" | |
24 #include "ui/gfx/skia_util.h" | 24 #include "ui/gfx/skia_util.h" |
25 #include "ui/views/view.h" | 25 #include "ui/views/view.h" |
26 #include "ui/views/widget/widget.h" | 26 #include "ui/views/widget/widget.h" |
27 #include "ui/views/widget/widget_delegate.h" | 27 #include "ui/views/widget/widget_delegate.h" |
28 | 28 |
29 using views::Widget; | 29 using views::Widget; |
30 | 30 |
31 namespace { | 31 namespace { |
32 // Color for the window title text. | 32 // Color for the window title text. |
33 const SkColor kWindowTitleTextColor = SkColorSetRGB(40, 40, 40); | 33 const SkColor kWindowTitleTextColor = SkColorSetRGB(40, 40, 40); |
(...skipping 409 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
443 } | 443 } |
444 | 444 |
445 gfx::Rect BrowserHeaderPainterAsh::GetPaintedBounds() const { | 445 gfx::Rect BrowserHeaderPainterAsh::GetPaintedBounds() const { |
446 return gfx::Rect(view_->width(), painted_height_); | 446 return gfx::Rect(view_->width(), painted_height_); |
447 } | 447 } |
448 | 448 |
449 gfx::Rect BrowserHeaderPainterAsh::GetTitleBounds() const { | 449 gfx::Rect BrowserHeaderPainterAsh::GetTitleBounds() const { |
450 return ash::HeaderPainterUtil::GetTitleBounds(window_icon_, | 450 return ash::HeaderPainterUtil::GetTitleBounds(window_icon_, |
451 caption_button_container_, BrowserFrame::GetTitleFontList()); | 451 caption_button_container_, BrowserFrame::GetTitleFontList()); |
452 } | 452 } |
OLD | NEW |