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

Unified Diff: chrome/browser/ui/cocoa/website_settings_bubble_controller.mm

Issue 114883004: Add base:: namespace to straggling string16s left in chrome/browser/ui. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: found more Created 7 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: chrome/browser/ui/cocoa/website_settings_bubble_controller.mm
diff --git a/chrome/browser/ui/cocoa/website_settings_bubble_controller.mm b/chrome/browser/ui/cocoa/website_settings_bubble_controller.mm
index d39bb7e3372ec92b8be9a89cfe0ff19380886ef2..c6027db01886717d08da2a18073be8b40d5c0fc7 100644
--- a/chrome/browser/ui/cocoa/website_settings_bubble_controller.mm
+++ b/chrome/browser/ui/cocoa/website_settings_bubble_controller.mm
@@ -386,7 +386,7 @@ NSColor* IdentityVerifiedTextColor() {
kFramePadding + info_bubble::kBubbleArrowHeight);
// Create a text field (empty for now) to show the site identity.
- identityField_ = [self addText:string16()
+ identityField_ = [self addText:base::string16()
withSize:[NSFont systemFontSize]
bold:YES
toView:contentView_
@@ -395,7 +395,7 @@ NSColor* IdentityVerifiedTextColor() {
NSHeight([identityField_ frame]) + kConnectionHeadlineSpacing;
// Create a text field to identity status (e.g. verified, not verified).
- identityStatusField_ = [self addText:string16()
+ identityStatusField_ = [self addText:base::string16()
withSize:[NSFont smallSystemFontSize]
bold:NO
toView:contentView_
@@ -543,7 +543,7 @@ NSColor* IdentityVerifiedTextColor() {
toView:contentView
atPoint:imagePosition];
identityStatusDescriptionField_ =
- [self addText:string16()
+ [self addText:base::string16()
withSize:[NSFont smallSystemFontSize]
bold:NO
toView:contentView.get()
@@ -556,7 +556,7 @@ NSColor* IdentityVerifiedTextColor() {
toView:contentView
atPoint:imagePosition];
connectionStatusDescriptionField_ =
- [self addText:string16()
+ [self addText:base::string16()
withSize:[NSFont smallSystemFontSize]
bold:NO
toView:contentView.get()
@@ -575,7 +575,7 @@ NSColor* IdentityVerifiedTextColor() {
toView:contentView.get()
atPoint:textPosition];
firstVisitDescriptionField_ =
- [self addText:string16()
+ [self addText:base::string16()
withSize:[NSFont smallSystemFontSize]
bold:NO
toView:contentView.get()
« no previous file with comments | « chrome/browser/ui/cocoa/one_click_signin_bubble_controller.mm ('k') | chrome/browser/ui/search/instant_search_prerenderer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698