| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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/theme_background.h" | 5 #include "chrome/browser/ui/views/theme_background.h" |
| 6 | 6 |
| 7 #include "chrome/browser/profiles/profile.h" | 7 #include "chrome/browser/profiles/profile.h" |
| 8 #include "chrome/browser/themes/theme_service.h" | 8 #include "chrome/browser/themes/theme_service.h" |
| 9 #include "chrome/browser/themes/theme_service_factory.h" | 9 #include "chrome/browser/themes/theme_service_factory.h" |
| 10 #include "chrome/browser/ui/views/frame/browser_view.h" | 10 #include "chrome/browser/ui/views/frame/browser_view.h" |
| 11 #include "grit/app_resources.h" | 11 #include "grit/app_resources.h" |
| 12 #include "grit/generated_resources.h" | 12 #include "grit/generated_resources.h" |
| 13 #include "grit/theme_resources.h" | 13 #include "grit/theme_resources.h" |
| 14 #include "grit/theme_resources_standard.h" |
| 14 #include "ui/base/resource/resource_bundle.h" | 15 #include "ui/base/resource/resource_bundle.h" |
| 15 #include "ui/gfx/canvas.h" | 16 #include "ui/gfx/canvas.h" |
| 16 #include "views/view.h" | 17 #include "views/view.h" |
| 17 | 18 |
| 18 ThemeBackground::ThemeBackground(BrowserView* browser_view) | 19 ThemeBackground::ThemeBackground(BrowserView* browser_view) |
| 19 : browser_view_(browser_view) { | 20 : browser_view_(browser_view) { |
| 20 } | 21 } |
| 21 | 22 |
| 22 void ThemeBackground::Paint(gfx::Canvas* canvas, views::View* view) const { | 23 void ThemeBackground::Paint(gfx::Canvas* canvas, views::View* view) const { |
| 23 SkBitmap* background; | 24 SkBitmap* background; |
| (...skipping 29 matching lines...) Expand all Loading... |
| 53 // TODO(oshima): Remove this once we fully migrated to views. | 54 // TODO(oshima): Remove this once we fully migrated to views. |
| 54 // See http://crbug.com/28580. | 55 // See http://crbug.com/28580. |
| 55 if (browser_view_->IsMaximized()) { | 56 if (browser_view_->IsMaximized()) { |
| 56 origin.Offset(0, kCustomFrameBackgroundVerticalOffset + 1); | 57 origin.Offset(0, kCustomFrameBackgroundVerticalOffset + 1); |
| 57 } | 58 } |
| 58 #endif | 59 #endif |
| 59 canvas->TileImageInt(*background, | 60 canvas->TileImageInt(*background, |
| 60 origin.x(), origin.y(), 0, 0, | 61 origin.x(), origin.y(), 0, 0, |
| 61 view->width(), view->height()); | 62 view->width(), view->height()); |
| 62 } | 63 } |
| OLD | NEW |