| Index: chrome/browser/importer/importer.cc
 | 
| ===================================================================
 | 
| --- chrome/browser/importer/importer.cc	(revision 6142)
 | 
| +++ chrome/browser/importer/importer.cc	(working copy)
 | 
| @@ -8,7 +8,6 @@
 | 
|  #include <set>
 | 
|  
 | 
|  #include "base/file_util.h"
 | 
| -#include "base/gfx/image_operations.h"
 | 
|  #include "base/gfx/png_encoder.h"
 | 
|  #include "base/string_util.h"
 | 
|  #include "chrome/browser/bookmarks/bookmark_model.h"
 | 
| @@ -31,6 +30,7 @@
 | 
|  #include "chrome/common/pref_service.h"
 | 
|  #include "chrome/common/win_util.h"
 | 
|  #include "chrome/views/window.h"
 | 
| +#include "skia/ext/image_operations.h"
 | 
|  #include "webkit/glue/image_decoder.h"
 | 
|  
 | 
|  #include "generated_resources.h"
 | 
| @@ -384,8 +384,8 @@
 | 
|      int new_width = decoded.width();
 | 
|      int new_height = decoded.height();
 | 
|      calc_favicon_target_size(&new_width, &new_height);
 | 
| -    decoded = gfx::ImageOperations::Resize(
 | 
| -        decoded, gfx::ImageOperations::RESIZE_LANCZOS3,
 | 
| +    decoded = skia::ImageOperations::Resize(
 | 
| +        decoded, skia::ImageOperations::RESIZE_LANCZOS3,
 | 
|          gfx::Size(new_width, new_height));
 | 
|    }
 | 
|  
 | 
| 
 |