| Index: chrome/browser/browser_theme_provider.cc
|
| ===================================================================
|
| --- chrome/browser/browser_theme_provider.cc (revision 25059)
|
| +++ chrome/browser/browser_theme_provider.cc (working copy)
|
| @@ -1000,11 +1000,7 @@
|
| }
|
| std::map<int, SkBitmap*>::iterator it = image_cache_.find(base_id);
|
| if (it != image_cache_.end()) {
|
| - SkBitmap* frame = it->second;
|
| - int blur_amount = HasCustomImage(id) ? 1 : 2;
|
| - SkBitmap blurred =
|
| - skia::ImageOperations::CreateBlurredBitmap(*frame, blur_amount);
|
| - SkBitmap* bg_tab = new SkBitmap(TintBitmap(blurred,
|
| + SkBitmap* bg_tab = new SkBitmap(TintBitmap(*(it->second),
|
| TINT_BACKGROUND_TAB));
|
|
|
| // If they've provided a custom image, overlay it.
|
|
|