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

Unified Diff: content/browser/android/edge_effect_l.h

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 | « content/browser/android/edge_effect.cc ('k') | content/browser/android/edge_effect_l.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/android/edge_effect_l.h
diff --git a/content/browser/android/edge_effect_l.h b/content/browser/android/edge_effect_l.h
index a24309c8da370413a7affc73b59dec3c0eeac77c..00064c2656b516f336b45a999820ae85f2b1ce5c 100644
--- a/content/browser/android/edge_effect_l.h
+++ b/content/browser/android/edge_effect_l.h
@@ -17,7 +17,7 @@ class UIResourceLayer;
}
namespace ui {
-class SystemUIResourceManager;
+class ResourceManager;
}
namespace content {
@@ -28,7 +28,7 @@ namespace content {
// All coordinates and dimensions are in device pixels.
class EdgeEffectL : public EdgeEffectBase {
public:
- explicit EdgeEffectL(ui::SystemUIResourceManager* resource_manager);
+ explicit EdgeEffectL(ui::ResourceManager* resource_manager);
virtual ~EdgeEffectL();
virtual void Pull(base::TimeTicks current_time,
@@ -46,10 +46,10 @@ class EdgeEffectL : public EdgeEffectBase {
virtual void SetParent(cc::Layer* parent) override;
// Thread-safe trigger to load resources.
- static void PreloadResources(ui::SystemUIResourceManager* resource_manager);
+ static void PreloadResources(ui::ResourceManager* resource_manager);
private:
- ui::SystemUIResourceManager* const resource_manager_;
+ ui::ResourceManager* const resource_manager_;
scoped_refptr<cc::UIResourceLayer> glow_;
« no previous file with comments | « content/browser/android/edge_effect.cc ('k') | content/browser/android/edge_effect_l.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698