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

Unified Diff: ios/chrome/browser/translate/never_translate_infobar_controller.mm

Issue 2952403002: [ObjC ARC] Converts ios/chrome/browser/translate:translate to ARC. (Closed)
Patch Set: Created 3 years, 6 months 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/translate/never_translate_infobar_controller.mm
diff --git a/ios/chrome/browser/translate/never_translate_infobar_controller.mm b/ios/chrome/browser/translate/never_translate_infobar_controller.mm
index 408da6501acc33e088145de86e1593a14e6e8b1a..a88d8c7843666af83911cbc93137b3339ec65faf 100644
--- a/ios/chrome/browser/translate/never_translate_infobar_controller.mm
+++ b/ios/chrome/browser/translate/never_translate_infobar_controller.mm
@@ -4,7 +4,6 @@
#include "ios/chrome/browser/translate/never_translate_infobar_controller.h"
-#include "base/mac/scoped_nsobject.h"
#include "base/strings/sys_string_conversions.h"
#include "base/strings/utf_string_conversions.h"
#include "components/strings/grit/components_strings.h"
@@ -16,6 +15,10 @@
#include "ui/base/l10n/l10n_util.h"
#include "ui/gfx/image/image.h"
+#if !defined(__has_feature) || !__has_feature(objc_arc)
+#error "This file requires ARC support."
+#endif
+
@interface NeverTranslateInfoBarController ()
// Action for any of the user defined buttons.
@@ -30,11 +33,11 @@
- (InfoBarView*)viewForDelegate:(infobars::InfoBarDelegate*)delegate
frame:(CGRect)frame {
- base::scoped_nsobject<InfoBarView> infoBarView;
+ InfoBarView* infoBarView;
translate::TranslateInfoBarDelegate* translateInfoBarDelegate =
delegate->AsTranslateInfoBarDelegate();
- infoBarView.reset(
- [[InfoBarView alloc] initWithFrame:frame delegate:self.delegate]);
+ infoBarView =
+ [[InfoBarView alloc] initWithFrame:frame delegate:self.delegate];
// Icon
gfx::Image icon = translateInfoBarDelegate->GetIcon();
if (!icon.IsEmpty())
@@ -60,7 +63,7 @@
tag2:TranslateInfoBarIOSTag::DENY_WEBSITE
target:self
action:@selector(infoBarButtonDidPress:)];
- return [[infoBarView retain] autorelease];
+ return infoBarView;
}
#pragma mark - Handling of User Events

Powered by Google App Engine
This is Rietveld 408576698