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

Unified Diff: chrome/browser/android/thumbnail/thumbnail.cc

Issue 755643004: Replace SystemUIResourceManager with ResourceManager (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix clang build failure Created 6 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 | « chrome/browser/android/thumbnail/thumbnail.h ('k') | chrome/browser/android/thumbnail/thumbnail_store.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/android/thumbnail/thumbnail.cc
diff --git a/chrome/browser/android/thumbnail/thumbnail.cc b/chrome/browser/android/thumbnail/thumbnail.cc
index 4ffda693a5973e7abeb1c82f3dd1435a079c0308..75d22fcc8ea3ca3f2aced5e5db9785d7726da376 100644
--- a/chrome/browser/android/thumbnail/thumbnail.cc
+++ b/chrome/browser/android/thumbnail/thumbnail.cc
@@ -4,9 +4,9 @@
#include "base/logging.h"
#include "chrome/browser/android/thumbnail/thumbnail.h"
-#include "content/public/browser/android/ui_resource_provider.h"
#include "third_party/skia/include/core/SkBitmap.h"
#include "third_party/skia/include/core/SkCanvas.h"
+#include "ui/android/resources/ui_resource_provider.h"
#include "ui/gfx/geometry/size_conversions.h"
namespace {
@@ -27,7 +27,7 @@ scoped_ptr<Thumbnail> Thumbnail::Create(
TabId tab_id,
const base::Time& time_stamp,
float scale,
- content::UIResourceProvider* ui_resource_provider,
+ ui::UIResourceProvider* ui_resource_provider,
ThumbnailDelegate* thumbnail_delegate) {
return make_scoped_ptr(new Thumbnail(
tab_id, time_stamp, scale, ui_resource_provider, thumbnail_delegate));
@@ -36,7 +36,7 @@ scoped_ptr<Thumbnail> Thumbnail::Create(
Thumbnail::Thumbnail(TabId tab_id,
const base::Time& time_stamp,
float scale,
- content::UIResourceProvider* ui_resource_provider,
+ ui::UIResourceProvider* ui_resource_provider,
ThumbnailDelegate* thumbnail_delegate)
: tab_id_(tab_id),
time_stamp_(time_stamp),
« no previous file with comments | « chrome/browser/android/thumbnail/thumbnail.h ('k') | chrome/browser/android/thumbnail/thumbnail_store.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698