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

Unified Diff: ios/chrome/browser/suggestions/image_fetcher_impl.mm

Issue 1508893003: Use proper namespace in skia/ext (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/common/cursors/webcursor_mac.mm ('k') | skia/ext/bitmap_platform_device_mac.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ios/chrome/browser/suggestions/image_fetcher_impl.mm
diff --git a/ios/chrome/browser/suggestions/image_fetcher_impl.mm b/ios/chrome/browser/suggestions/image_fetcher_impl.mm
index 01cde4860735bd92bd2c8fcf7f8a9be9a4950887..02e398e5f7516ec71e443372d59e318f387b6da1 100644
--- a/ios/chrome/browser/suggestions/image_fetcher_impl.mm
+++ b/ios/chrome/browser/suggestions/image_fetcher_impl.mm
@@ -48,7 +48,7 @@ void ImageFetcherImpl::StartOrQueueNetworkRequest(
UIImage* image = [UIImage imageWithData:data scale:1];
if (image) {
SkBitmap bitmap =
- gfx::CGImageToSkBitmap(image.CGImage, [image size], YES);
+ skia::CGImageToSkBitmap(image.CGImage, [image size], YES);
callback.Run(page_url, &bitmap);
if (delegate_) {
delegate_->OnImageFetched(page_url, &bitmap);
« no previous file with comments | « content/common/cursors/webcursor_mac.mm ('k') | skia/ext/bitmap_platform_device_mac.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698