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

Side by Side Diff: chrome/browser/ui/views/theme_background.cc

Issue 6849030: Add support for multi resolution icons (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Added comments Created 9 years, 8 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
« no previous file with comments | « chrome/browser/ui/views/tabs/tab_strip.cc ('k') | chrome/browser/ui/views/toolbar_view.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/views/tabs/tab_strip.cc ('k') | chrome/browser/ui/views/toolbar_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698