Index: chrome/common/extensions/extension.h |
diff --git a/chrome/common/extensions/extension.h b/chrome/common/extensions/extension.h |
index a991645308a5513276474924d2f77d63ce626c1f..74dd479087f222aa4cf59da8d2f79148c7aa72f5 100644 |
--- a/chrome/common/extensions/extension.h |
+++ b/chrome/common/extensions/extension.h |
@@ -400,7 +400,7 @@ class Extension : public base::RefCountedThreadSafe<Extension> { |
// called on the file thread. To easily load extension images on the UI |
// thread, see ImageLoadingTracker. |
static void DecodeIcon(const Extension* extension, |
- ExtensionIconSet::Icons icon_size, |
+ int icon_size, |
ExtensionIconSet::MatchType match_type, |
scoped_ptr<SkBitmap>* result); |
@@ -409,7 +409,7 @@ class Extension : public base::RefCountedThreadSafe<Extension> { |
// file thread. To easily load extension images on the UI thread, see |
// ImageLoadingTracker. |
static void DecodeIcon(const Extension* extension, |
- ExtensionIconSet::Icons icon_size, |
+ int icon_size, |
scoped_ptr<SkBitmap>* result); |
// Given an icon_path and icon size, read it if present and decode it into |
@@ -417,7 +417,7 @@ class Extension : public base::RefCountedThreadSafe<Extension> { |
// file thread. To easily load extension images on the UI thread, see |
// ImageLoadingTracker. |
static void DecodeIconFromPath(const FilePath& icon_path, |
- ExtensionIconSet::Icons icon_size, |
+ int icon_size, |
scoped_ptr<SkBitmap>* result); |
// Returns the default extension/app icon (for extensions or apps that don't |