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

Side by Side Diff: chrome/browser/extensions/extension_icon_manager.cc

Issue 832953002: Cleanup: Update the path to gfx size headers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: REBASE Created 5 years, 11 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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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/extensions/extension_icon_manager.h" 5 #include "chrome/browser/extensions/extension_icon_manager.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/logging.h" 8 #include "base/logging.h"
9 #include "base/stl_util.h" 9 #include "base/stl_util.h"
10 #include "extensions/browser/image_loader.h" 10 #include "extensions/browser/image_loader.h"
11 #include "extensions/common/constants.h" 11 #include "extensions/common/constants.h"
12 #include "extensions/common/extension.h" 12 #include "extensions/common/extension.h"
13 #include "extensions/common/extension_icon_set.h" 13 #include "extensions/common/extension_icon_set.h"
14 #include "extensions/common/extension_resource.h" 14 #include "extensions/common/extension_resource.h"
15 #include "extensions/common/manifest_handlers/icons_handler.h" 15 #include "extensions/common/manifest_handlers/icons_handler.h"
16 #include "grit/theme_resources.h" 16 #include "grit/theme_resources.h"
17 #include "skia/ext/image_operations.h" 17 #include "skia/ext/image_operations.h"
18 #include "ui/base/resource/resource_bundle.h" 18 #include "ui/base/resource/resource_bundle.h"
19 #include "ui/gfx/canvas.h" 19 #include "ui/gfx/canvas.h"
20 #include "ui/gfx/color_utils.h" 20 #include "ui/gfx/color_utils.h"
21 #include "ui/gfx/favicon_size.h" 21 #include "ui/gfx/favicon_size.h"
22 #include "ui/gfx/geometry/size.h"
22 #include "ui/gfx/image/image.h" 23 #include "ui/gfx/image/image.h"
23 #include "ui/gfx/size.h"
24 #include "ui/gfx/skbitmap_operations.h" 24 #include "ui/gfx/skbitmap_operations.h"
25 25
26 namespace { 26 namespace {
27 27
28 // Helper function to create a new bitmap with |padding| amount of empty space 28 // Helper function to create a new bitmap with |padding| amount of empty space
29 // around the original bitmap. 29 // around the original bitmap.
30 static SkBitmap ApplyPadding(const SkBitmap& source, 30 static SkBitmap ApplyPadding(const SkBitmap& source,
31 const gfx::Insets& padding) { 31 const gfx::Insets& padding) {
32 scoped_ptr<gfx::Canvas> result( 32 scoped_ptr<gfx::Canvas> result(
33 new gfx::Canvas(gfx::Size(source.width() + padding.width(), 33 new gfx::Canvas(gfx::Size(source.width() + padding.width(),
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 if (monochrome_) { 127 if (monochrome_) {
128 color_utils::HSL shift = {-1, 0, 0.6}; 128 color_utils::HSL shift = {-1, 0, 0.6};
129 result = SkBitmapOperations::CreateHSLShiftedBitmap(result, shift); 129 result = SkBitmapOperations::CreateHSLShiftedBitmap(result, shift);
130 } 130 }
131 131
132 if (!padding_.empty()) 132 if (!padding_.empty())
133 result = ApplyPadding(result, padding_); 133 result = ApplyPadding(result, padding_);
134 134
135 return result; 135 return result;
136 } 136 }
OLDNEW
« no previous file with comments | « chrome/browser/extensions/extension_disabled_ui.cc ('k') | chrome/browser/extensions/favicon_downloader.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698