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

Unified Diff: chrome/browser/ui/cocoa/profiles/avatar_label_button.mm

Issue 350183002: Rename "managed (mode|user)" to "supervised user" (part 5) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 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: chrome/browser/ui/cocoa/profiles/avatar_label_button.mm
diff --git a/chrome/browser/ui/cocoa/profiles/avatar_label_button.mm b/chrome/browser/ui/cocoa/profiles/avatar_label_button.mm
index daa9761cd4d9cdffabc9805447f698882a07667c..c3cd37d18f1340bc6b0e44adb94e04e80f7ece0b 100644
--- a/chrome/browser/ui/cocoa/profiles/avatar_label_button.mm
+++ b/chrome/browser/ui/cocoa/profiles/avatar_label_button.mm
@@ -37,7 +37,7 @@ const CGFloat kLabelTextBottomSpacing = 4;
- (id)initWithFrame:(NSRect)frameRect {
if ((self = [super initWithFrame:frameRect])) {
[self setBezelStyle:NSSmallSquareBezelStyle];
- [self setTitle:l10n_util::GetNSString(IDS_MANAGED_USER_AVATAR_LABEL)];
+ [self setTitle:l10n_util::GetNSString(IDS_SUPERVISED_USER_AVATAR_LABEL)];
[self setFont:[NSFont labelFontOfSize:12.0]];
// Increase the frame by the size of the label to be displayed.
NSSize textSize = [[self cell] labelTextSize];
@@ -64,7 +64,7 @@ const CGFloat kLabelTextBottomSpacing = 4;
}
- (void)drawBezelWithFrame:(NSRect)frame inView:(NSView*)controlView {
- ui::NinePartImageIds imageIds = IMAGE_GRID(IDR_MANAGED_USER_LABEL);
+ ui::NinePartImageIds imageIds = IMAGE_GRID(IDR_SUPERVISED_USER_LABEL);
ui::DrawNinePartImage(frame, imageIds, NSCompositeSourceOver, 1.0, true);
}
« no previous file with comments | « chrome/browser/ui/cocoa/profiles/avatar_button_controller.mm ('k') | chrome/browser/ui/views/profiles/avatar_label.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698