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

Unified Diff: ui/message_center/cocoa/settings_entry_view.mm

Issue 1114743002: mac: Rename the method -layout in MCSettingsButtonCell. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/message_center/cocoa/settings_entry_view.mm
diff --git a/ui/message_center/cocoa/settings_entry_view.mm b/ui/message_center/cocoa/settings_entry_view.mm
index c31d230e6121ad00779aed341662127a896892ba..7006ab3749a27cf772a1ec779b8042b317d225b5 100644
--- a/ui/message_center/cocoa/settings_entry_view.mm
+++ b/ui/message_center/cocoa/settings_entry_view.mm
@@ -169,21 +169,21 @@ const int kCorrectedEntryRightPadding =
notifier_ = notifier;
if (!notifier->icon.IsEmpty())
notifierIcon_.reset(notifier->icon.CopyNSImage());
- [self layout];
+ [self layoutEntryView];
}
return self;
}
- (void)setNotifierIcon:(NSImage*)notifierIcon {
notifierIcon_.reset([notifierIcon retain]);
- [self layout];
+ [self layoutEntryView];
}
- (NSButton*)checkbox {
return checkbox_;
}
-- (void)layout {
+- (void)layoutEntryView {
BOOL hasLearnMore =
[controller_ notifierHasAdvancedSettings:notifier_->notifier_id];
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698