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

Unified Diff: ios/chrome/browser/ui/overscroll_actions/overscroll_actions_view.mm

Issue 2602903002: Factor iOS native image loading into a utility function. (Closed)
Patch Set: Fixed BUILD files. Created 4 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
Index: ios/chrome/browser/ui/overscroll_actions/overscroll_actions_view.mm
diff --git a/ios/chrome/browser/ui/overscroll_actions/overscroll_actions_view.mm b/ios/chrome/browser/ui/overscroll_actions/overscroll_actions_view.mm
index 44aa1ecad5405d95099ff83939dde9a5bdbb1630..3f9e91dc6ae18f14cb6fd5aaaf04b67d268804f1 100644
--- a/ios/chrome/browser/ui/overscroll_actions/overscroll_actions_view.mm
+++ b/ios/chrome/browser/ui/overscroll_actions/overscroll_actions_view.mm
@@ -10,8 +10,8 @@
#include "base/mac/objc_property_releaser.h"
#include "base/mac/scoped_nsobject.h"
#include "ios/chrome/browser/ui/rtl_geometry.h"
+#include "ios/chrome/browser/ui/uikit_ui_util.h"
#include "ios/chrome/grit/ios_theme_resources.h"
-#include "ui/base/resource/resource_bundle.h"
namespace {
// Actions images.
@@ -285,10 +285,8 @@ enum class OverscrollViewState {
[_highlightMaskLayer addSublayer:_refreshActionImageViewHighlighted.layer];
[_highlightMaskLayer addSublayer:_closeTabActionImageViewHighlighted.layer];
- _shadowView = [[UIImageView alloc] initWithFrame:CGRectZero];
- ResourceBundle& rb = ResourceBundle::GetSharedInstance();
- gfx::Image shadow = rb.GetNativeImageNamed(IDR_IOS_TOOLBAR_SHADOW);
- [_shadowView setImage:shadow.ToUIImage()];
+ _shadowView =
+ [[UIImageView alloc] initWithImage:NativeImage(IDR_IOS_TOOLBAR_SHADOW)];
[self addSubview:_shadowView];
_backgroundView = [[UIView alloc] initWithFrame:CGRectZero];

Powered by Google App Engine
This is Rietveld 408576698